Skip to content

Commit dd8e669

Browse files
committed
modify some top file.
1 parent 1c1817a commit dd8e669

8 files changed

+209
-35
lines changed

bibliography.tex

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
\begin{thebibliography}{99}
3+
\bibitem{caculus-course} [前苏联]菲赫金哥尔茨. 微积分学教程. 高等教育出版社, 2006.
4+
\bibitem{olympic-math} 钱展望,朱华伟. 奥林匹克数学. 湖北教育出版社, 2002.
5+
\bibitem{contest-math-course} 陈传理,张同君. 竞赛数学教程. 高等教育出版社, 2002.
6+
\bibitem{higher-algebra} 北京大学数学系几何与代数教研室前代数小组. 高等代数. 高等教育出版社, 2004.
7+
\bibitem{math-analysis} 华东师范大学数学系, 数学分析. 高等教育出版社, 2004.
8+
\bibitem{elementary-number-theory} 闵嗣鹤,严士健. 初等数论. 人民教育出版社, 1983. 1983.
9+
\bibitem{kuing-problem-book} kuing. kuing网络撸题集. 网络电子书, 2015.
10+
\bibitem{the-secret-of-inequality} [越南]Pham Kim Hung. 不等式的秘密(第一卷). 哈尔滨工业大学出版社, 2012.
11+
\bibitem{conic-sections} [古希腊]阿波罗尼奥斯. 圆锥曲线论. 陕西科学技术出版社, 2007.
12+
\end{thebibliography}
13+
14+
15+
\addcontentsline{toc}{chapter}{参考文献}
16+
17+
%%% Local Variables:
18+
%%% mode: latex
19+
%%% TeX-master: "book"
20+
%%% End:

book.tex

+5-18
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11

2-
\documentclass[a4paper]{ctexbook}
2+
\documentclass{ctexbook}
33

44
\input{use-packages}
5+
\input{cmd-env}
56

6-
\title{微积分学个人笔记}
7+
\title{\kaishu{微积分学个人笔记}}
78
\author{zhcosin<zhcosin@163.com>}
8-
\date{created: 2016-08-05 \\ last updated: \today}
9+
\date{created: 2016-04-11 \\ last updated: \today}
910

1011
\begin{document}
1112

@@ -18,23 +19,9 @@
1819

1920
\include{tableofcontents}
2021

21-
%\include{content/prepare/prepare}
22-
2322
\include{contents/the-limit-of-sequence/the-limit-of-sequence}
2423

25-
%\include{content/number-sequence/number-sequence}
26-
27-
%\include{content/vector/vector}
28-
29-
%\include{content/inequation/inequation}
30-
31-
%\include{content/analytic-geometry/analytic-geometry}
32-
33-
%\include{content/solid-geometry/solid-geometry}
34-
35-
%\include{content/plane-geometry/plane-geometry}
36-
37-
%\include{content/combination/combination}
24+
\input{bibliography}
3825

3926
\end{document}
4027

build-pic.sh

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
#!/bin/bash
3+
4+
function scandir() {
5+
local cur_dir parent_dir workdir
6+
workdir=$1
7+
cd ${workdir}
8+
if [ ${workdir} = "/" ]
9+
then
10+
cur_dir=""
11+
else
12+
cur_dir=$(pwd)
13+
fi
14+
15+
for dirlist in $(ls ${cur_dir})
16+
do
17+
if test -d ${dirlist};then
18+
echo "enter directory: "${dirlist}
19+
cd ${dirlist}
20+
scandir ${cur_dir}/${dirlist} $2
21+
cd ..
22+
else
23+
#做自己的工作
24+
local filename=$dirlist
25+
#echo "当前文件是:"${cur_dir}/$filename
26+
#echo ${#2} #.zip 4
27+
#echo ${filename:(-${#2})}
28+
29+
if [[ ${filename:(-${#2})} = $2 ]]
30+
then
31+
echo "process file: "${cur_dir}/$filename
32+
asy -f pdf $filename
33+
fi
34+
fi
35+
done
36+
}
37+
38+
scandir $(pwd) "asy"

clear-pic.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
find -name "*.pdf" -exec rm -f {} \;

cmd-env.tex

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
% 自定义环境
3+
\newcounter{example}[section]
4+
\renewcommand{\theexample}{\thesection.\arabic{example}}
5+
6+
\newenvironment{example}[1][]{\refstepcounter{example} \textbf{\theexample \ #1} \hspace{0.5em}}{\hspace{\stretch{1}} \rule{1ex}{1ex}}
7+
8+
\newtheorem{definition}{定义}[section]
9+
\newtheorem{property}{性质}[section]
10+
\newtheorem{theorem}{定理}[section]
11+
\newtheorem{inference}{推论}[section]
12+
\newtheorem{axiom}{公理}[section]
13+
\newtheorem{lemma}{引理}[section]
14+
\newtheorem{principle}{原理}[section]
15+
\newtheorem{exercise}{题目}[section]
16+
\newtheorem{topic}{问题}[section]
17+
\newtheorem{statement}{命题}[section]
18+
% \newtheorem{example}{例}[section]
19+
20+
% 使公式编号与章节关联,命令由 amsmath 宏包提供
21+
\numberwithin{equation}{section}
22+
23+
%%% Local Variables:
24+
%%% mode: latex
25+
%%% TeX-master: "book"
26+
%%% End:

preface.tex

+18-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@
22
\chapter*{}
33
\addcontentsline{toc}{chapter}{序}
44

5-
%\begin{verse}
6-
%无材可去补苍天,枉入红尘若许年。\\
7-
%此系身前身后事,倩谁记去作奇传。\\
8-
%-- 曹雪芹
9-
%\end{verse}
5+
这份笔记开工于2016年4月6日,其实它在这之前几年就应该动笔的,高考后的十年间,除了囫囵吞枣的学了一些高等数学内容外,数学能力没有与年龄同步增长,常引为恨事,所以打算以写作这份笔记为契机,给自己一个继续学习的机会,以期常有所思,常有所得。虽然平时也有一些数学上的思考,但终究没有积累下来,没有形成自己的知识体系,这份笔记算是在这方面的一个尝试。
6+
7+
其实我不能算是这份笔记的作者,只能算是整理者,因为其中属于我自己原创的内容其实很少,就这份笔记所涉及的内容而言,那些定理和结论都是前人几百年前甚至早在公元前就研究透彻了,我辈若是能在没接触前人成果的情况下独立发现一些结论就已经是非常不容易了,何况我是在早已经接触过这些结论甚至还大体记得推导证明过程的基础上进行了重新推导而已。这份笔记主要内容的来源,基本上是参考文献所列出的那几本书籍,这基本上也是我这几年所读过的书,实际上没有哪一部是认真读完过的,还有极少数的内容是我自己在没接触过前人结论的情况下自己推导所得(例如伯努利信封问题,我一直称为错位排列问题),这些内容主要以例子的形式出现。
8+
9+
这份笔记的写作受到了前苏联数学家菲赫金哥尔茨所著《微积分学教程》的影响,这是我最推崇的一部巨著,书中取材之广泛,讨论之深度和广度超乎我的想象能力,我也从这部书中受益良多,这份笔记也在取材的广度和深度方面甚至内容的组织方面都受到它的影响。
10+
11+
这份笔记目前没有成书之日,也没有什么计划之类,受限于自己的数学能力和工作闲暇,不定期的更新而已。
12+
13+
我最佩服的几何学家是古希腊的 Apollonius,中文译作阿波罗尼奥斯,他生活在公元前的古希腊,他所著的《圆锥曲线论》将圆锥曲线的性质几乎一网打尽,以致于后人在长达两千年间没能在这个领域有所建树,直到笛卡尔坐标几何的创立,他所采用的还是纯几何理论,当然他也是在一些前人的研究成果上结合自己的研究写出了这部巨著,有时间会认真读一读这部书的部分内容。让我惊叹的是这竟然是在公元前的希腊完成的,古希腊的数学到底是有多发达,何以古希腊没能在我们今天所称四大文明古国之列呢。
14+
15+
致谢也是不能缺少的,首先要感谢的是本书参考文献的作者们,是他们让我接触到了这么多精彩的数学内容,当然还有一些书没有在参考文献之列(其实是我也想不起来是从哪儿看到的了),也一并感谢。还要感谢的是《计算机程序设计艺术》一书的作者 Donald E. Knuth,他开发的\TeX 排版系统以及由之发展而来的 \LaTeX 系统,使得我排版自己的书籍成为可能,还有编辑器 Emacs 的作者 Richard Stallman,这个编辑器所带来的强大的功能和编辑体验对我完成这份笔记功不可没。最后还要感谢我的夫人和女儿,女儿的降生给了我们这个家庭前所未有的欢乐,我对她的信心是在她的学生生涯,数学学科不至于成为她的拦路虎。夫人在照顾女儿上的付出才让我得以有精力来完成这份笔记。还有我的父母和哥哥。
16+
17+
\vspace{1.5cm}
18+
19+
\hfill 2017-03-20 \ \ \ \ \
20+
21+
\hfill 于成都华阳 \ \ \ \ \
22+
1023

1124
%%% Local Variables:
1225
%%% mode: latex

tableofcontents.tex

+70-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,73 @@
11

2+
%\tableofcontents
3+
%\addcontentsline{toc}{chapter}{目录}
4+
5+
\newcommand*\cdotfill{%
6+
\leavevmode
7+
\leaders \hbox to .5em {\hss\textcdot\hss}\hfill}
8+
9+
\etocsetstyle{chapter}
10+
{%
11+
\setlength\rightskip{4\ccwd}%
12+
\addtolength\parfillskip{-\rightskip}%
13+
\etocskipfirstprefix
14+
}
15+
{\medskip}
16+
{%
17+
\bfseries
18+
\noindent
19+
\etocifnumbered
20+
{%
21+
\sbox0{\etocthenumber\unskip\quad}%
22+
\setlength\leftskip{\wd0}%
23+
\etoclink{\llap{\box0}\etocthename}%
24+
}
25+
{%
26+
\setlength\leftskip{\rightskip}%
27+
\hskip-\leftskip
28+
\etocname
29+
}%
30+
\nobreak\cdotfill\etocpage\par
31+
}
32+
{}
33+
34+
\etocsetstyle{section}
35+
{\nopagebreak\normalfont}
36+
{\smallskip}
37+
{%
38+
\noindent
39+
\etocifnumbered
40+
{\etoclink{\llap{\etocthenumber\quad}\etocthename}}
41+
{\etocname}%
42+
\nobreak\cdotfill\etocpage\par
43+
}
44+
{}
45+
46+
\etocsetstyle{subsection}
47+
{%
48+
\nopagebreak
49+
\begingroup
50+
\addtolength\parfillskip{\rightskip}%
51+
\addtolength\rightskip{\fill}%
52+
\etocskipfirstprefix
53+
\noindent
54+
}
55+
{\quad}
56+
{%
57+
\hbox{%
58+
\etoclink{%
59+
\etocifnumbered{\etocthenumber\enskip}{}%
60+
\etocthename\ (\etocthepage)%
61+
}%
62+
}%
63+
}
64+
{\par\endgroup}
65+
66+
67+
268
\tableofcontents
369
\addcontentsline{toc}{chapter}{目录}
4-
70+
%%% Local Variables:
71+
%%% mode: latex
72+
%%% TeX-master: "book"
73+
%%% End:

use-packages.tex

+30-11
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,47 @@
11
%\usepackage{minitoc}
2+
3+
% 定制页面版式的宏包
4+
\usepackage[a4paper,left=3.5cm,right=3.5cm, bottom=3.5cm,top=3.5cm]{geometry}
5+
6+
% 定制目录样式的宏包
7+
\usepackage{etoc}
8+
9+
% 定制日期时间格式的宏包
210
\usepackage[yyyymmdd]{datetime}
311
\renewcommand{\dateseparator}{-}
412

13+
% 数学必备宏包
514
\usepackage{amsmath}
6-
\usepackage{amsthm}
715
\usepackage{amssymb}
16+
17+
% 定理和证明环境
18+
\usepackage{amsthm}
19+
820
\usepackage{makecell}
21+
22+
% 插图宏包,提供插图命令 \includegraphics
923
\usepackage{graphicx}
24+
25+
% 好看的向量箭头符号,命令是 \vv
1026
\usepackage{esvect}
27+
28+
% 数学花体,命令是\mathscr
29+
\usepackage{mathrsfs}
30+
31+
% 数学粗体,用于向量或矩阵等,命令是\bm
32+
\usepackage{bm}
33+
34+
% 改善表格排版质量的宏包
1135
\usepackage{booktabs}
36+
37+
% 使目录和各种引用具有超链接效果
1238
\usepackage[colorlinks,linkcolor=black,CJKbookmarks=true,bookmarksnumbered]{hyperref}
13-
\usepackage[font=small,labelfont=bf,labelsep=none]{caption}
1439

15-
\newtheorem{definition}{定义}[section]
16-
\newtheorem{theorem}{定理}[section]
17-
\newtheorem{lemma}{引理}[section]
18-
\newtheorem{principle}{原理}[section]
19-
\newtheorem{exercise}{题目}[section]
20-
\newtheorem{topic}{问题}[section]
21-
\newtheorem{statement}{命题}[section]
22-
\newtheorem{example}{例}[section]
40+
% 定制插图和表格的标题的宏包
41+
\usepackage[font=small,labelfont=bf,labelsep=space]{caption}
2342

2443

2544
%%% Local Variables:
26-
%%% mode: plain-tex
45+
%%% mode: latex
2746
%%% TeX-master: "book"
2847
%%% End:

0 commit comments

Comments
 (0)