一般来说,网上的 LaTeX 模板已经足够用了,只需要会用就行了,基础语法请看LaTeX 基础。
如果想要自己编写模板,则涉及到了一些高级一点的语法。
# texdoc 手册
遇到不会的语法,常用自带的手册。可以使用 texdoc <command>
查询。
# 常用纸张布局
此部分源码及 PDF 见:https://github.com/lyh543/UESTC_LaTeX_Template/blob/master/Course_Thesis_others/心理学漫谈
% 参考 Word 默认格式
\usepackage[a4paper, inner=3.18cm, outer=3.18cm, top=2.54cm, bottom=2.54cm, bindingoffset=0cm]{geometry}
# 页眉控制
此部分源码及 PDF 见:https://github.com/lyh543/UESTC_LaTeX_Template/blob/master/Course_Thesis_others/心理学漫谈
注意中括号的内容的含义如下:H, F
页眉页脚、L, C, R
左中右部分、O, E
奇偶页。
\usepackage{fancyhdr}
\fancyhead{} % 清空之前的格式
\fancyhead[HL]{心理学漫谈结课论文}
\fancyhead[HR]{\zhdate*{2019/1/13}}
\fancyfoot[FC]{\thepage}
\setlength{\headsep}{5pt} % 设置页眉距
\begin{document}
\pagestyle{fancy} % 正文运用 fancy
\maketitle
\thispagestyle{fancy} % 标题页默认没有页眉,这句强制添加页眉
# 摘要(不分页无大标题)
此部分源码及 PDF 见:https://github.com/lyh543/UESTC_LaTeX_Template/blob/master/Course_Thesis_others/心理学漫谈
不需要 \section
或 \chapter
或 \begin{abstract}
,直接写就行。
{\bfseries 摘要:}随着社交网络渗透到人们生活的方方面面,刷朋友圈似乎已称为大学生生活不可缺少的一部分……
{\bfseries 关键字:}朋友圈;嫉妒;心理分析
# 修改 Abstract、Reference 为中文摘要、参考文献
此部分源码及 PDF 见:https://github.com/lyh543/UESTC_LaTeX_Template/blob/master/Course_Thesis_others/心理学漫谈
\renewcommand\refname{参考文献}
\renewcommand{\abstractname}{\textbf{\large {摘\quad 要}}} %更改摘要二字的样式
\begin{document}
% ...
# 中文数字、日期
参见 texdoc zhnumber
。
\zhdate{2019/1/13} % 生成 2019 年 1 月 13 日
\zhdate*{2019/1/13} % 生成 2019 年 1 月 13 日 星期日
# newcommand 和 newenvironment
\newcommand{\customcmd}{\realthing}
\newenvironment{customenv}
{
}
\customcmd
\begin{customenv}
% ...
\end{customenv}