软件选择
Latex发行版,有Texlive和Miklive。图以后省事,选择了安装Texlive,二者的区别百度可知。安装好的Texlive软件里内置Texwork editor文本编辑器,在开始菜单可以找到,打开就可撰写Latex文档。
安装流程可参考Texlive安装流程。下面给出Latex文档源代码,需要指出的是,该源代码存在许多瑕疵,如图片题注的命名出现了冒号等等。
生成安装流程PDF文件的Latex代码
\documentclass[UTF8]{ctexart}
\usepackage{graphicx} %插入图片需要使用的宏包
\usepackage{geometry} %设置纸张需要的宏包
\geometry{a4paper,total={170mm,257mm},left=20mm,top=20mm,}
\usepackage{float} %调整图片位置使用的宏包
\title{Texlive安装流程}
\author{snow}
\date{\today}
\begin{document}
\maketitle
\pagenumbering{roman} % 设置页码格式是罗马数字
\tableofcontents
\newpage
\pagenumbering{arabic} % 设置页码格式是阿拉伯数字
\section{安装步骤}
本文介绍了Texlive的安装步骤
\subsection{下载到所需的文件}
按照图1-图5的流程下载镜像软件
\begin{figure}[H]
\centering
\includegraphics[scale=0.7]{new} %图片与tex文档在同一个路径下,这里使用的是相对路径,new是图片名称
\caption{fig1} %图片的标题
\label{img-1}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[scale=0.6]{2} %2是图片名称
\caption{} %图片的标题
\label{img-2}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[scale=0.6]{3} %3是图片名称
\caption{} %图片的标题
\label{img-2}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[scale=0.6]{4} %4是图片名称
\caption{} %图片的标题
\label{img-2}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[scale=0.6]{5} %5是图片名称
\caption{} %图片的标题
\label{img-2}
\end{figure}
\subsection{找到install-windows}
以管理员身份运行
\subsection{傻瓜式安装}
可以选择安装路径,减少语言种类的安装可实现安装效率的提升
\end{document}
教学视频链接
https://www.bilibili.com/video/BV1s7411U7Prfrom=search&seid=5368265545421260367
安装参考
https://download.csdn.net/download/qq_50632468/19886685