-
Notifications
You must be signed in to change notification settings - Fork 2
/
math.tex
72 lines (58 loc) · 1.43 KB
/
math.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
\documentclass[UTF8,12pt]{ctexbook}
\def\pdftitle{数学笔记}
\def\pdfauthor{KaiserKatze}
\title{\pdftitle}
\author{\pdfauthor}
\date{
Powered by \TeX\\
\today
}
\usepackage{my-math-note}
\allowdisplaybreaks%
% \includeonly{
% % parts/集合论,
% % parts/初等数学,
% % parts/几何学,
% % parts/线性代数1,
% % parts/线性代数2,
% % parts/抽象代数,
% % parts/单变量微积分,
% % parts/多变量微积分,
% % parts/拓扑学,
% % parts/测度论,
% % parts/复分析,
% % parts/概率论与数理统计,
% % parts/数值分析,
% % parts/附录,
% }
\begin{document}
\frontmatter%
\pagenumbering{gobble}% 页码:阿拉伯数字
\input{parts/封面}
\pagenumbering{roman}% 页码:小写罗马数字
\input{parts/前言}
\tableofcontents
\mainmatter%
\pagenumbering{arabic}% 页码:阿拉伯数字
% 每章新起一张
\let\oldchapter\chapter
\renewcommand{\chapter}{\cleardoublepage\oldchapter}
% 每节新起一页
\let\oldsection\section
\renewcommand{\section}{\clearpage\oldsection}
\everymath{\displaystyle}
\include{parts/集合论}
\include{parts/初等数学}
\include{parts/几何学}
\input{parts/线性代数}
\include{parts/抽象代数}
\include{parts/单变量微积分}
\include{parts/多变量微积分}
\include{parts/拓扑学}
\include{parts/测度论}
\include{parts/复分析}
\include{parts/概率论与数理统计}
\include{parts/数值分析}
\backmatter%
\include{parts/附录}
\end{document}