-
Notifications
You must be signed in to change notification settings - Fork 22
/
book.tex
81 lines (67 loc) · 1.83 KB
/
book.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
\usepackage[notref,notcite]{showkeys}
\renewcommand*{\showkeyslabelformat}[1]{%
{\rotatebox[origin=cr]{60}{\normalfont\tiny\ttfamily#1}}}
% \includeonly{}
%%% Index and glossary
\makeglossary
\changeglossnum{\thepage}
\changeglossnumformat{|hyperpage}
\makeindex
%%% Version file
\input version
%% speed up compilation by compiling tikz figure separately
%% unless we say not to be defining \OPTnotikzexternal
\ifthenelse{\isundefined{\OPTnotikzexternal}}{%
\usepackage{tikz-external-hash}
\usetikzlibrary{external}%
\tikzset{external/system call={pdflatex -fmt macros \tikzexternalcheckshellescape -halt-on-error -interaction=batchmode -jobname "\image" "\texsource"}}
\tikzexternalize[prefix=figures/]%
\AtBeginEnvironment{tikzcd}{\tikzexternaldisable}
\AtEndEnvironment{tikzcd}{\tikzexternalenable}
}{}
\begin{document}
\frontmatter
\thetitlepage
\thecopyrightpage
\renewcommand*{\contentsname}{Short contents}
\setcounter{tocdepth}{0} % chapter
\tableofcontents
\clearpage
\renewcommand*{\contentsname}{Contents}
\setcounter{tocdepth}{1} % section
\tableofcontents
%\include{preface}
\mainmatter
\include{intro}
\include{intro-uf}
\include{circle}
\include{group}
\include{actions}
\include{absgroup}
\include{congp}
\include{subgroups}
\include{fingp}
\include{fggroups}
\include{abelian}
\include{fields}
\include{geometry}
\include{galois}
\appendix
\include{history}
\include{metamath}
\backmatter
% No margin notes in the back matter
\begin{fullwidth}
\raggedright
\printbibliography
\printglossary
\printindex
\end{fullwidth}
\end{document}
% Local Variables:
% fill-column: 144
% latex-block-names: ("lemma" "theorem" "remark" "definition" "corollary" "fact" "properties" "conjecture" "proof" "question" "proposition" "exercise")
% TeX-master: t
% TeX-command-extra-options: "-fmt=macros"
% compile-command: "make book.pdf"
% End: