-
Notifications
You must be signed in to change notification settings - Fork 7
/
book.tex
76 lines (66 loc) · 1.78 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% This file is part of the book
%%
%% Algorithmic Graph Theory
%% http://code.google.com/p/graph-theory-algorithms-book/
%%
%% Copyright (C) 2010 David Joyner <[email protected]>
%% Copyright (C) 2009--2011 Minh Van Nguyen <[email protected]>
%% Copyright (C) 2010 Nathann Cohen <[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}
\author{\Large David Joyner, Minh Van Nguyen, Nathann Cohen}
\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/graph-algorithms.tex}
\input{tex/trees-forests.tex}
\input{tex/tree-data-structures.tex}
\input{tex/distance-connectivity.tex}
\input{tex/optimal-traversals.tex}
\input{tex/planar-graphs.tex}
\input{tex/graph-coloring.tex}
\input{tex/network-flows.tex}
\input{tex/random-graphs.tex}
\input{tex/lp-formulations.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}