forked from Tufte-LaTeX/tufte-latex
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample-book.tex
52 lines (38 loc) · 1.14 KB
/
sample-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
%%
% MODIFICATIONS by cbettinger
% * moved preambel to tufte-book.cls
% * moved chapters to separate files
% * added document class options 'a4paper', 'oneside' and 'justified'
% * added page background color
% * added H.P. Lovecraft to dedication
% * removed epigraphs
\documentclass[a4paper,oneside,justified]{tufte-book}
\title{A Tufte-Style Book}
\subtitle{Lovecraft Edition}
\author{Dr. Henry Armitage}
\publisher{Miscatonic University}
% page background color
% Comment out the following line if you do want to add a page background color (e.g. for printing)
\pagecolor{LightChamois}
\begin{document}
\frontmatter
\maketitle
\makecopyright
\tableofcontents
\listoffigures
\listoftables
\makededication{For Edward R. Tufte,\\
Donald E. Knuth,\\
and H.P. Lovecraft}
\input{sample-book-chapters/abstract.tex}
\mainmatter
\input{sample-book-chapters/tufte-design.tex}
\input{sample-book-chapters/tufte-book.tex}
\input{sample-book-chapters/customizing.tex}
\input{sample-book-chapters/compatibility.tex}
\input{sample-book-chapters/troubleshooting.tex}
\backmatter
\bibliography{sample-handout}
\bibliographystyle{plainnat}
\printindex
\end{document}