-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbook.tex
78 lines (68 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% This file is part of the book
%%
%% Algorithmic Graph Theory and Sage
%% https://code.google.com/p/graphbook/
%%
%% Copyright (C) 2010--2014 David Joyner <[email protected]>
%% Copyright (C) 2009--2014 Minh Van Nguyen <[email protected]>
%% Copyright (C) 2013--2014 David Phillips <[email protected]>
%%
%% See the file COPYING for copying conditions.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,twoside,12pt]{book}
\usepackage{mystyle}
\begin{document}
\pagenumbering{alph}
\title{\Huge\bf Algorithmic Graph Theory and Sage}
\author{\Large David Joyner, Minh Van Nguyen, David Phillips}
\date{%
Version~\documentEdition \\
\today
}
\maketitle
%% Copyright page
{\thispagestyle{empty}
\input{tex/notice.tex} \\\\
\textbf{Edition} \\
Version~\documentEdition \\
\today
}
%% Front matter
\frontmatter
\setcounter{tocdepth}{1}
\tableofcontents
\let\cleardoublepage\clearpage
\input{tex/acknowledgments.tex}
\let\cleardoublepage\clearpage
%% Main document body
\mainmatter
\input{tex/introduction.tex}
\input{tex/datastructures.tex}
\input{tex/trees-forests.tex}
\input{tex/graph-algorithms.tex}
\input{tex/graph-data-structures.tex}
\input{tex/distance-connectivity.tex}
\input{tex/centrality-prestige.tex}
\input{tex/optimal-traversals.tex}
\input{tex/graph-coloring.tex}
\input{tex/network-flows.tex}
\input{tex/algebraic-graph-theory.tex}
\input{tex/random-graphs.tex}
%% Appendices
\appendix
\cleardoublepage
\input{tex/asymptotic.tex}
\cleardoublepage
\input{tex/license-gfdl.tex}
%% Back matter
\backmatter
\cleardoublepage
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{bibliography}
\bibliography{bibliography}
\cleardoublepage
\addcontentsline{toc}{chapter}{Index}
\printindex
\end{document}