-
Notifications
You must be signed in to change notification settings - Fork 0
/
phoenix.latex
205 lines (176 loc) · 4.59 KB
/
phoenix.latex
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
$if(fontsize)$
\documentclass[$fontsize$,a4paper,ngerman]{article}
$else$
\documentclass[a4paper,ngerman]{article}
$endif$
\usepackage{hyperref}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{babel}
% Allow multiline printing for hyphenated words
\def\hyph{-\penalty0\hskip0pt\relax}
\setlength{\skip\footins}{0.8cm}
\setlength{\parindent}{0pt}
\usepackage[parfill]{parskip}
\usepackage{graphicx}
\setkeys{Gin}{width=0.90\linewidth}
% Update default floating positioning of figures to be always inline
\usepackage{float}
\floatplacement{figure}{H}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage{titlesec}
\titlespacing*{\section}
{0pt}{2ex}{0ex}
\titlespacing*{\subsection}
{0pt}{2ex}{0ex}
$if(title)$
\title{$title$}
$endif$
$if(subtitle)$
\providecommand{\subtitle}[1]{}
\subtitle{$subtitle$}
$endif$
$if(author)$
\author{$for(author)$$author$$sep$ \and $endfor$}
$endif$
$if(colorlinks)$
\PassOptionsToPackage{dvipsnames,svgnames*,x11names*}{xcolor}
$endif$
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\date{$date$}
% ============================================================================
% Section numbering
% ============================================================================
$if(numbersections)$
\setcounter{secnumdepth}{$if(secnumdepth)$$secnumdepth$$else$5$endif$}
$else$
\setcounter{secnumdepth}{0}
$endif$
% =============================================================================
% Margins
% =============================================================================
% The default values are set to:
% 1.25cm
% 2cm 2cm
% 1.25cm
$if(margin)$
\usepackage[
$for(margin)$
$if(margin.top)$
top=$margin.top$,
$else$
top=1.25cm,
$endif$
$if(margin.right)$
right=$margin.right$,
$else$
right=2cm,
$endif$
$if(margin.bottom)$
bottom=$margin.bottom$,
$else$
bottom=1.25cm,
$endif$
$if(margin.left)$
left=$margin.left$,
$else$
left=2cm,
$endif$
$endfor$
headheight=17pt,includehead,includefoot
]{geometry}
$else$
\usepackage[top=1.25cm,right=2cm,bottom=1.25cm,left=2cm,headheight=17pt,includehead,includefoot]{geometry}
$endif$
% =============================================================================
% Header / Footer
% =============================================================================
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{0.5pt}
% Add default empty margin to upper left header field (overwritten if set)
\fancyhead[LO,LE]{\rule[-1ex]{0pt}{0ex} }
$if(header)$
$for(header)$
$if(header.left)$
\fancyhead[LO,LE]{\rule[-1ex]{0pt}{0ex}$header.left$}
$endif$
$if(header.center)$
\fancyhead[CO,CE]{\textbf{$header.center$}}
$endif$
$if(header.right)$
\fancyhead[RO,RE]{$header.right$}
$endif$
$endfor$
$endif$
$if(footer)$
\usepackage{lastpage}
$for(footer)$
$if(footer.left)$
\fancyfoot[LO,LE]{$footer.left$}
$else$
\fancyfoot[LO,LE]{$footer.left$ $for(author)$$author$ $endfor$}
$endif$
$if(footer.center)$
\fancyfoot[CO,CE]{$footer.center$}
$else$
\fancyfoot[CO,CE]{}
$endif$
$if(footer.right)$
\fancyfoot[RO,RE]{$footer.right$}
$else$
\fancyfoot[RO,RE]{\thepage \ / \pageref{LastPage}}
$endif$
$endfor$
$endif$
$if(defaultfont)$
\renewcommand{\familydefault}{cmr}
$else$
\usepackage[default,osfigures,scale=0.95]{opensans}
$endif$
% =============================================================================
% Custom preamble commands
% =============================================================================
$for(preamble)$
$preamble$
$endfor$
% =============================================================================
% Document content
% =============================================================================
\begin{document}
$if(titlepage)$
$if(title)$
\maketitle
\thispagestyle{empty}
\clearpage
\setcounter{page}{1}
$endif$
$endif$
$if(toc)$
{
$if(colorlinks)$
\hypersetup{linkcolor=$if(toccolor)$$toccolor$$else$$endif$}
$endif$
\setcounter{tocdepth}{$toc-depth$}
\tableofcontents
}
$endif$
$if(lot)$
\listoftables
$endif$
$if(lof)$
\listoffigures
$endif$
$body$
$if(biblatex)$
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
$endif$
$for(includeafter)$
$includeafter$
$endfor$
\end{document}