forked from sisl/tufte_algorithms_book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.tex
42 lines (36 loc) · 874 Bytes
/
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
% Compilation process:
% julia pull_julia_code.jl
% lualatex book
% pythontex book
% biber book
% lualatex book
\documentclass[fullbook]{tufte_algorithms_book}
\title{Textbook Template}
\author[LastnameOne and LastnameTwo]{Author A. LastnameOne \\ Author B. LastnameTwo}
\date{2019}
\begin{document}
\frontmatter
\input{titlepage}
\include{copyrightpage}
\include{dedication}
\forceheader{Contents}
\tableofcontents
\include{chapter/preface}
\include{chapter/acknowledgments}
\mainmatter
\begin{jlcode}
include("../support_code.jl")
\end{jlcode}
\include{chapter/introduction}
% Add additional include statements for your other chapters.
\appendix
\include{chapter/appendix}
\solutions
\backmatter
\chapter*{References}
\addcontentsline{toc}{chapter}{References}
\forceheader{References}
\printbibliography[heading=none]
\forceheader{Index}
\printindex
\end{document}