-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.tex
73 lines (48 loc) · 1.52 KB
/
test.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
\documentclass[a4paper, 11pt]{ctexart}
\input{../preamble.tex}
\title{一篇 \LaTeX 的测试文章}
\author{某某某}
\begin{document}
\maketitle
\thispagestyle{empty}
\clearpage
\tableofcontents
\thispagestyle{empty}
\clearpage
\setcounter{page}{1}
\section{数学相关}
\subsection{基本}
数学相关的文章通常使用英文标点, \LaTeX 能正确处理中英文字和标点混杂的情况, 比如本 section 使用的是英文标点.
下面是个带标号的数学公式:
\begin{equation}
\Gamma(\alpha) = \int_{0}^{+\infty} x^{\alpha - 1} e^{-x} \,dx (\alpha > 0)
\label{eq:gamma-fn}
\end{equation}
公式 \ref{eq:gamma-fn} 是 $\Gamma$ 函数.
这一个行内公式: $f(x) = ax + b$, 以及另一个: $\int \cos x \,dx = \sin x$. 下面是没有标号的块公式:
$$
E = mc^2
$$
\subsection{定理, 推论, 例题}
\begin{theorem}
这里是一个很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长定理.
\label{th:1}
\end{theorem}
定理 \ref{th:1} 同样可以通过 \codeinline{\ref} 引用标号.
\begin{proof}
这里是定理 \ref{th:1} 的证明.
\end{proof}
\begin{example}
这是一个例题. 包含一个公式:
\begin{equation}
\Gamma(\alpha) = \int_{0}^{+\infty} x^{\alpha - 1} e^{-x} \,dx (\alpha > 0)
\end{equation}
\label{eg:1}
\end{example}
\begin{solution}
这是例 \ref{eg:1} 的解.
\end{solution}
\begin{remark}
这是一个注.
\end{remark}
\end{document}