-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.tex
executable file
·90 lines (77 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
\documentclass[zihao = -4,cn]{oucart}
\title{论文标题}
\entitle{The Title of the Thesis}
\author{作者名}
\studentid{123456789}
\advisor{指导教师名}
\department{学院名}{专业年级}
\cnabstractkeywords{
这是中文摘要。
}{
中文, 关键字
}
\enabstractkeywords{
This is an English abstract.
}{
English, Abstract
}
\begin{document}
\makecover
\makesignature
\makeabstract
\thispagestyle{tableofcontents}
\tableofcontents
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
% 正文内容
% 建议使用 \input{<文件名>} 指令引用其他文件
\section{示例章节}
\subsection{示例章节}
\subsubsection{示例章节}
中国海洋大学的发展目标是: 到 2025 年建校百年前后, 将学校建设成为国际知名, 特色显著的高水平研究型大学; 到本世纪中叶或更长一段时间, 立足海洋强国建设, 大力推进改革创新, 通过强化建设和持续发展, 努力实现全面跨越, 力争使学校跻身特色显著的世界一流大学行列\cite{wiki:ouc}.
\section{测试章节}
测试图片:
\begin{figure}[!htbp]
\centering
\includegraphics[width = 0.2\textwidth]{assets/logo}
\caption{中国海洋大学}
\label{fig:ouc1}
\end{figure}
测试表格:
\begin{table}[!htbp]
\centering
\caption{一个基本的三线表}
\begin{minipage}[t]{350pt}
\begin{tabular*}{350pt}{@{\extracolsep{\fill}}ccc}
\toprule
第一列 & 第二列 & 第三列 \\
\midrule
文字 & English & $\alpha^*$ \\
文字 & English & $\beta$ \\
文字 & English & $\gamma$\\
\bottomrule
\end{tabular*}
\footnotesize
数据来源:相关的数据来源。 \\
$*$:表中需要解释的内容
\end{minipage}
\end{table}
测试公式:
\begin{equation}
\lim_{x\to 0}{\frac{e^x-1}{2x}}
\overset{\left[\frac{0}{0}\right]}{\underset{\mathrm{H}}{=}}
\lim_{x\to 0}{\frac{e^x}{2}}={\frac{1}{2}}
\end{equation}
\newpage
%\bibliographystyle{unsrt}
\bibliography{main}
\newpage
\begin{center}
\zihao{3} \textbf{致谢} \\
\end{center}
\newpage
\begin{center}
\zihao{3} \textbf{附录} \\
\end{center}
\end{document}