研究生阶段要使用LaTex进行论文写作,所以现在进行简单的入门。
1.模板下载
2.基本结构
1 2 3 4 5 6
| \documentclass[journal,10pt]{IEEEtran}
\usepackage{宏包名} \begin{document} 正文 \end{document}
|
3.认识基本参数
- 左右图一一对应
- 主要在于尝试
- 英文编译方式选择pdfLaTex
- 中文编译方式选择XeLaTex
- 分段:加入一行空行即可
4.插入图片
1 2 3 4 5 6 7 8 9 10 11 12 13
| \documentclass[journal,10pt]{IEEEtran} \usepackage{graphicx} \begin{document} Text
\begin{figure}[h] \centering \includegraphics[scale=1.1]{Figure/fig2.ong} \caption{abc} \label{fig:2} \end{figure}
\end{document}
|
插入公式、插入表格类似。
5.插入算法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| \documentclass[journal,10pt]{IEEEtran} \usepackage[ruled,linesnumbered]{algorithm2e} \begin{document} Text \begin{algorithm}[h] \caption{test} \label{alg:alg4} \KwIn{} \KwOut{} \uIf{b=0}{ \For{ 1 to }{ ; } } \ElseIf{}{ } \Return{} \end{algorithm} \end{document}
|
6.插入参考文献
1 2 3 4 5 6 7
| \documentclass[journal,10pt]{IEEEtran} \usepackage{cite} \begin{document} Text \cite{[1]} \bibliographystyle{IEEEtran} \bibliography{IEEEabrv, reference.bib} \end{document}
|
7.便于写公式、表格、符号的网站