一、安装 Miktex 和TeX studio
Miktex 是编译包,Tex studio 是编辑器
或者下载Ctex(支持中文),其中包含编译包Miktex和编辑器WinEdit
二、简单的TeX文件构成:
\documentclass[]{} %定义风格,例如elsevier
\usepackage{} % 插入各种包,可以支持多种功能
\begin{document}
\title{}
\author{}
\maketitle
\bibliography{参考文献文件名称}
\end{document}
三、一些技巧
1.取消首行缩进
\noindent
2.更改section,subsection的编号方式
\renewcommand\thesection{\arabic{section}}
%arabic 阿拉伯数字
%roman 小写的罗马数字
%Roman 大写的罗马数字
%alph 小写字母
%Alph 大写字母
\renewcommand\thesection{\arabic{subsection}}