-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex
55 lines (43 loc) · 1.01 KB
/
template.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
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{hyperref}
\usepackage{caption}
\usepackage[margin=1.5in]{geometry}
\usepackage{setspace}
\onehalfspacing
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[LE,RO]{\leftmark}
\fancyhead[RE,LO]{Harry Potter}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\usepackage[backend=biber, style=numeric]{biblatex}
\addbibresource{./references.bib}
\usepackage[numbib,notlof,notlot,nottoc]{tocbibind}
\pagenumbering{gobble}
\begin{document}
\input{chapter/title-page.tex}
\pagenumbering{Roman}
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\pagenumbering{arabic}
\section{Section One}
\label{sec:section_one}
\input{./chapter/section_one.tex}
\clearpage
\section{Section Two}
\label{sec:section_two}
\input{./chapter/section_two.tex}
\clearpage
\printbibliography
\end{document}