GitHub上的一个Latex模板
代码下载:GitHub的项目地址或者在LATEX项目报告模板下载。
编译环境:Latex的编译器,如Ctex软件。
把源码clone或者下载到本地后,根据他的说明
如何开始
使用report.tex开始编辑,并按照那里给出的说明进行操作。
用Latex编译report.tex就可以生成pdf,见:pdf文档。
1 \begin{document} 2 \renewcommand\bibname{References} %Renames "Bibliography" to "References" on ref page 3 4 %include other pages 5 \input{./title.tex} %调用标题的tex文件 6 \input{./certificate.tex} 7 \input{./abstract.tex} %调用摘要的tex文件 8 9 \pagenumbering{roman} %numbering before main content starts 10 \tableofcontents 11 \listoffigures 12 13 \newpage 14 \pagenumbering{arabic} %reset numbering to normal for the main content 15 16 \input{./prob-definition.tex} %objective changed to problem definition 17 \input{./introduction.tex} %literature survey included in this 18 \input{./work-done.tex} 19 \input{./future-work.tex} 20 \input{./conclusion.tex} 21 \input{./acknow.tex} 22 \input{./ref.tex} 23 24 \end{document}
其中report.tex中通过调用其他tex程序生成对应的标题,摘要等段落。