forked from xjtu-blacksmith/notes-on-computing-methods
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.tex
More file actions
42 lines (33 loc) · 1.24 KB
/
main.tex
File metadata and controls
42 lines (33 loc) · 1.24 KB
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
\documentclass[opensource,b5paper,sourcefont]{qyxf-book} % 无思源字体时请移除 sourcefont 选项
% 基本信息
\title{计算方法撷英}
\author{王天浩,尤佳睿}
\date{2019 年 11 月 24 日}
% qyxf-book 模板要求的附加 token
\subtitle{Notes on Computing Methods}
\typo{xjtu-blacksmith}
\sourcepage{\url{https://github.com/qyxf/notes-on-computing-methods}}
\version{1.1}
% 补充宏包及命令定义
\include{structure}
\makeindex % 创建索引
% 建议加入一些算法——长期计划。
\begin{document}
\frontmatter
\maketitle
\include{chapters/preface} % 前言
\tableofcontents
\mainmatter
\include{chapters/chp-1} % 误差
\include{chapters/chp-2} % 线性方程组直接解法
\include{chapters/chp-3} % 线性方程组迭代解法
\include{chapters/chp-4} % 插值法
\include{chapters/chp-5} % 函数最优逼近
\include{chapters/chp-6} % 数值积分与数值微分
\include{chapters/chp-7} % 非线性方程迭代解法
\include{chapters/chp-8} % 常微分方程数值解
\backmatter
\include{chapters/about-exam} % 考试内容评析
\addcontentsline{toc}{chapter}{索引} % 向目录中加入索引,可与下面一行一同去掉
\printindex % 需要 zhmakeindex 程序,可不要此索引
\end{document}