-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
50 lines (40 loc) · 1.53 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
\documentclass[12pt, a4paper]{article}
\usepackage{xeCJK}
\usepackage{fontspec}
\usepackage{indentfirst}
\usepackage{enumitem}
\usepackage{multicol}
\usepackage{cite}
\usepackage{booktabs}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{xcolor}
\usepackage[margin=1.25in]{geometry} % 页面边缘留白设置
\pagestyle{fancy} % 页头页脚自定义包
\setmainfont{思源宋体 CN} % 字体设置
\setmonofont{等距更纱黑体 SC} % 等宽字体设置
\setCJKmainfont{思源宋体 CN} % 中文字体设置
\setCJKmonofont{等距更纱黑体 SC} % 中文等宽字体设置
\linespread{1.5} % 行距
\lstset{ % 代码风格设置
basicstyle=\footnotesize\ttfamily,
keywordstyle=\bfseries,
numbers=left,
frame=single,
columns=fixed,
showspaces=false,
showstringspaces=false,
language=java, % 语言模式
breaklines=true
}
\renewcommand\contentsname{目录} % 目录标题
\renewcommand\figurename{图} % 图片标题
\begin{document}
\include{title} % 标题页
\tableofcontents % 目录页
\newpage
\include{section/section1} % 第一节
\appendix % 附录
\include{appendix/appendixA}
\end{document}