latex 新手使用教程
latex 新手使用教程
主要针对没用过latex,需要使用编辑论文模板的小伙伴,总结了一些经验以及相关博客
环境配置
TeXlive+TeXstuido
安装教程参考:
https://www.jianshu.com/p/3e842d67ada2
注:先安装texlive
表格转化
转化网址
https://www.tablesgenerator.com/
将word或Excel表格复制,粘贴到这个网页
表格复制粘贴加上需要的线条即可
转化出的表格若包含multirow等,需要在引言部分加上这些包
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{makecell}
公式转化
步骤参考网址
公式转化网址
转化成功的公式写在:
\begin{equation}
公式
\end{equation}
文本中不需要编号的公式写在 $$ 中间
更多公式类型参考:https://www.cnblogs.com/liangjianli/p/11616067.html
图片
单栏
\begin{figure}[htpb]
\centerline{\includegraphics[width=\columnwidth]{collect.png}} %设置图片宽度
\caption{Data Process.}%图片标题
\label{fig2} %引用时使用 \ref {fig2}
\end{figure}
双栏
\begin{figure*}[htpb] %表格或图片加上*号就可以了
\centerline{\includegraphics[width=1\textwidth]{collect.png}} %设置图片宽度
\caption{Data Process.}%图片标题
\label{fig2} %引用时使用 \ref {fig2}
\end{figure*}
包含子图
\begin{figure*} [t!]
\centering
\subfloat[\label{fig:a}A ]{ %子图标签及标题
\includegraphics[width=0.5\textwidth]{1.png}}
\subfloat[\label{fig:b}B]{
\includegraphics[width=0.5\textwidth]{2.png}}
\\
\subfloat[\label{fig:c}C.]{
\includegraphics[width=0.5\textwidth]{3.png}}
\subfloat[\label{fig:d}D.]{
\includegraphics[width=0.5\textwidth]{4.png}}
\caption{Collection . } %总图标题
\label{fig3}
\end{figure*}
声明区需要添加 \usepackage{subfig}
文本中的字符的上下标记 和横线
加^号 : \hat{x}
加横线 : \overline{x}
加宽^: \widehat{x}
加波浪线 : \widetilde{x}
加一个点 : \dot{x}
加两个点: \ddot{x}