1,页边距的设置
\usepackage{geometry}
\geometry{left=1.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm}
2,带有标注的表格
\usepackage{threeparttable}
结构
\begin{table}
\begin{threeparttable}
\caption{content}
\center
\begin{tabular}{lcc}
conlum1 & conlum2 & conlum3*
end{tabular}
\begin{tablenotes}
\item[*] note
\end{tablenotes}
\end{threeparttable}
\end{table}
3,文本注释
行注释:%
大段注释:
\usepackage{verbatim}
\begin{comment}
多行文本
\end{comment}