forked from yax-lakam-tuun/maya-decipherment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
54 lines (44 loc) · 1.41 KB
/
main.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
\documentclass[pdftex,a4paper,headsepline,oneside]{scrreprt}
% Avoid warning non-useful warnings of our own maya and preamble package
\usepackage{silence}
\WarningFilter{latex}{You have requested package `..//preamble',}
\WarningFilter{latex}{You have requested package `..//maya',}
% import preamble file (preamble.sty)
\usepackage{preamble}
% add references
\addbibresource{\subfix{references.bib}}
% Print bibliography at end of each subfile when compiling separately,
% but also in main document when compiling together
\AtEndDocument{%
\printbibliography[title={References},heading=bibintoc]
}
% declare some pdf header stuff
\newcommand{\worktitle}{Maya Hieroglyphs --- The History of Decipherment}
\newcommand{\authorlist}{Sebastian Bauer} % add here your name when authored some content
\title{\worktitle}
\author{\authorlist}
\date{\today}
\hypersetup{
pdfauthor={\authorlist},
% TODO: some more keywords might be nice
pdfkeywords={history, decipherment, Maya, hieroglyphs, writing, inscriptions},
pdftitle={\worktitle},
pdfsubject={\worktitle}
}
% actual beginning of document
% LTeX: enabled=false
\begin{document}
\pagenumbering{Alph}
\begin{titlepage}
\subfile{title/title}
\end{titlepage}
\pagenumbering{roman}
\linespread{1.25}
% table of contents
\tableofcontents
\newpage
\pagenumbering{arabic}
%chapters
\subfile{introduction/introduction}
\subfile{terminology/terminology}
\end{document}