-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassicthesis-config.tex
378 lines (316 loc) · 13 KB
/
classicthesis-config.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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
%!TEX root = ./ThesisRomainbrault.tex
%!TeX program = pdflatex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Classicthesis Typographic Thesis
% Configuration File
%
% This file has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% André Miede (http://www.miede.de) with extensive commenting changes by:
% Vel ([email protected])
%
% License:
% GNU General Public License (v2)
%
% Important note:
% The main lines to change in this file are in the thref VARIABLES
% section, the rest of the file is for advanced configuration.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\listfiles
\usepackage{silence}
\usepackage[utf8]{inputenc}
\usepackage{varioref}
\if@PDFX@
\usepackage[a-1b]{pdfx}
\else
\usepackage{hyperref}
\fi
%------------------------------------------------------------------------------
\usepackage{adforn}
\usepackage{pythontex}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{cmap} % copy-paste pdf
\usepackage{ragged2e}
\usepackage{minitoc}
%------------------------------------------------------------------------------
% USEFUL COMMANDS
%------------------------------------------------------------------------------
\newcounter{dummy} % Necessary for correct hyperlinks (to index, bib, etc.)
\providecommand{\mLyX}{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@}
\newlength{\abcd} % for ab..z string length calculation
%------------------------------------------------------------------------------
% PACKAGES
%------------------------------------------------------------------------------
% Used for inserting dummy 'Lorem ipsum' text into the template
% \usepackage{lipsum}
%------------------------------------------------------------------------------
% Spanish languages need extra options in order to work with this template
%\PassOptionsToPackage{spanish,es-lcroman}{babel}
\usepackage[american]{babel}
%------------------------------------------------------------------------------
\usepackage[absolute]{textpos}
\usepackage{afterpage}
\usepackage{pdflscape}
\usepackage{rotating}
\usepackage{placeins}
%------------------------------------------------------------------------------
\usepackage{csquotes}
\PassOptionsToPackage{%
%backend=biber, % Instead of bibtex
backend=bibtex8, %
bibencoding=utf8,%
language=auto,%
style=numeric-comp,%
firstinits=true, %
% style=authoryear-comp, % Author 1999, 2010
% bibstyle=authoryear,dashed=false, % dashed: substitute rep. author with ---
sorting=nyt, % name, year, title
maxbibnames=10, % default: 3, et al.
backref=true, %
block=space, %
natbib=true % natbib compatibility mode (\citep and \citet still work)
}{biblatex}
\usepackage{biblatex}
%------------------------------------------------------------------------------
\PassOptionsToPackage{fleqn}{amsmath} % Math environments and more by the AMS
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{dsfont}
%------------------------------------------------------------------------------
\PassOptionsToPackage{T1}{fontenc} % T2A for cyrillics
\usepackage{fontenc}
%------------------------------------------------------------------------------
\usepackage{textcomp} % Fix warning with missing font shapes
%------------------------------------------------------------------------------
\usepackage{scrhack} % Fix warnings when using KOMA with listings package
%------------------------------------------------------------------------------
\usepackage{xspace} % To get the spacing after macros right
%------------------------------------------------------------------------------
\usepackage{mparhack} % To get marginpar right
%------------------------------------------------------------------------------
% Not necessary for overleaf's LaTeX version.
% \usepackage{fixltx2e} % Fixes some LaTeX stuff
%------------------------------------------------------------------------------
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{tikz}
\usetikzlibrary{cd}
\usetikzlibrary{matrix}
\makeatletter
\tikzset{
column sep/.code=\def\pgfmatrixcolumnsep{\pgf@matrix@xscale*(#1)},
row sep/.code =\def\pgfmatrixrowsep{\pgf@matrix@yscale*(#1)},
matrix xscale/.code=%
\pgfmathsetmacro\pgf@matrix@xscale{\pgf@matrix@xscale*(#1)},
matrix yscale/.code=%
\pgfmathsetmacro\pgf@matrix@yscale{\pgf@matrix@yscale*(#1)},
matrix scale/.style={/tikz/matrix xscale={#1},/tikz/matrix yscale={#1}}}
\def\pgf@matrix@xscale{1}
\def\pgf@matrix@yscale{1}
\makeatother
%------------------------------------------------------------------------------
% FLOATS: TABLES, FIGURES AND CAPTIONS SETUP
%------------------------------------------------------------------------------
\usepackage{ltablex}
\usepackage{tabularx}
\usepackage{threeparttablex}
\setlength{\extrarowheight}{3pt} % Increase table row height
\newcommand{\tableheadline}[1]{\multicolumn{1}{c}{\spacedlowsmallcaps{#1}}}
\newcommand{\myfloatalign}{\centering} % To be used with each float for alignment
\usepackage{caption}
\captionsetup{font=small}
\usepackage{subfig}
%------------------------------------------------------------------------------
% CODE LISTINGS SETUP
%------------------------------------------------------------------------------
\usepackage{listings}
%\lstset{emph={trueIndex,root},emphstyle=\color{BlueViolet}}%\underbar} % For special keywords
\lstset{language=[LaTeX]Tex,%C++ % Specify the language(s) for listings here
morekeywords={PassOptionsToPackage,selectlanguage},
keywordstyle=\color{RoyalBlue}, % Add \bfseries for bold
basicstyle=\small\ttfamily, % Makes listings a smaller font size and a different font
identifierstyle=\color{NavyBlue}, % Color of text inside brackets
commentstyle=\color{Green}\ttfamily, % Color of comments
stringstyle=\rmfamily, % Font type to use for strings
numbers=left, % Change left to none to remove line numbers
numberstyle=\scriptsize, % Font size of the line numbers
stepnumber=5, % Increment of line numbers
numbersep=8pt, % Distance of line numbers from code listing
showstringspaces=false, % Sets whether spaces in strings should appear underlined
breaklines=true, % Force the code to stay in the confines of the listing box
%frameround=ftff, % Uncomment for rounded frame
frame=single, % Frame border - none/leftline/topline/bottomline/lines/single/shadowbox/L
belowcaptionskip=.75\baselineskip % Space after the "Listing #: Desciption" text and the listing box
}
%------------------------------------------------------------------------------
% HYPERREFERENCES
%------------------------------------------------------------------------------
% \usepackage{varioref}
\pdfminorversion=9
\pdfcompresslevel=0
% \pdfadjustspacing=1
\hypersetup{%
% Uncomment the line below to remove all links (to references, figures, tables,
% etc), useful for b/w printouts draft,
pdflang={en-US},
pdfauthor={Romain Raymond Brault},
xetex,
hyperfootnotes=true,
colorlinks=true, linktocpage=true, pdfstartpage=3, pdfstartview=FitV,
% Uncomment the line below if you want to have black links (e.g. for printing
% black and white)
%colorlinks=false, linktocpage=false, pdfborder={0 0 0}, pdfstartpage=3,
pdfstartview=FitV,
pdfpagelayout=TwoColumnRight,
breaklinks=true, pdfpagemode=UseNone, pageanchor=true, pdfpagemode=UseOutlines,
plainpages=false, bookmarksnumbered, bookmarksopen=true, bookmarksopenlevel=1,
hypertexnames=true, pdfhighlight=/O, nesting=true, %frenchlinks,%
urlcolor=PSaclay, linkcolor=RoyalBlue, citecolor=webgreen,
%pagecolor=Black,%
}
\VerbatimFootnotes
%------------------------------------------------------------------------------
\usepackage[shortlabels]{enumitem}
\usepackage{braket}
\usepackage{dirtytalk}
\usepackage{numprint}
\usepackage[sc]{mathpazo} % Palatino with smallcaps
\usepackage[scaled]{helvet} % Helvetica, scaled 95%
% Remove drafting to get rid of the '[ Date - classicthesis version 4.0 ]' text
% at the bottom of every page
\PassOptionsToPackage{eulerchapternumbers, listings, subfig, parts,
floatperchapter, eulermath, linedheaders}{classicthesis}
% Available options: drafting parts nochapters linedheaders eulerchapternumbers
% beramono eulermath pdfspacing minionprospacing tocaligned dottedtoc
% manychapters listings floatperchapter subfig
\usepackage{classicthesis}
\usepackage{breqn}
%------------------------------------------------------------------------------
\usepackage{colonequals}
\usepackage{amssymb,amsmath}
\usepackage{nameref}
\usepackage[amsmath,thmmarks,hyperref]{ntheorem}
\usepackage[nameinlink,noabbrev]{cleveref}
\usepackage{mathtools}
\usepackage[algo2e,ruled,linesnumbered]{algorithm2e}
\newcommand{\theHalgorithm}{\arabic{algorithm}}
\usepackage{commands}
%\crefname{algocfline}{algorithm}{algorithms}
%\Crefname{algocfline}{Algorithm}{Algorithms}
%\crefname{algocf}{algorithm}{algorithm}
%\Crefname{algocf}{Algorithm}{Algorithms}
%\crefname{table}{table}{tables}
%\Crefname{table}{Table}{Tables}
%\crefname{figure}{figure}{figures}
%\Crefname{figure}{Figure}{Figures}
%\crefname{chapter}{chapter}{chapters}
%\Crefname{chapter}{Chapter}{Chapters}
%\crefname{section}{section}{sections}
%\Crefname{section}{Section}{Sections}
%\crefname{subsection}{subsection}{subsections}
%\Crefname{subsection}{Subsection}{Subsections}
%\crefname{theorem}{theorem}{theorems}
%\Crefname{theorem}{Theorem}{Theorems}
\crefname{algocfline}{Algorithm}{Algorithms}
\Crefname{algocfline}{Algorithm}{Algorithms}
\crefname{algocf}{Algorithm}{Algorithm}
\Crefname{algocf}{Algorithm}{Algorithms}
\crefname{table}{Table}{Tables}
\Crefname{table}{Table}{Tables}
\crefname{figure}{Figure}{Figures}
\Crefname{figure}{Figure}{Figures}
\crefname{chapter}{Chapter}{Chapters}
\Crefname{chapter}{Chapter}{Chapters}
\crefname{section}{Section}{Sections}
\Crefname{section}{Section}{Sections}
\crefname{appendix}{Appendix}{Appendices}
\Crefname{appendix}{Appendix}{Appendices}
\crefname{subsection}{Subsection}{Subsections}
\Crefname{subsection}{Subsection}{Subsections}
\crefname{subsubsection}{Subsubsection}{Subsubsections}
\Crefname{subsubsection}{Subsubsection}{Subsubsections}
\crefname{theorem}{Theorem}{Theorems}
\Crefname{theorem}{Theorem}{Theorems}
\crefname{proposition}{Proposition}{Propositions}
\Crefname{proposition}{Proposition}{Propositions}
\crefname{lemma}{Lemma}{Lemmas}
\Crefname{lemma}{Lemma}{Lemmas}
\crefname{corollary}{Corollary}{Corollaries}
\Crefname{corollary}{corollary}{Corollaries}
\crefname{equation}{Equation}{Equations}
\Crefname{equation}{Equation}{Equations}
\crefname{remark}{Remark}{Remarks}
\Crefname{remark}{Remark}{Remarks}
\crefname{example}{Example}{Examples}
\Crefname{example}{Example}{Examples}
\creflabelformat{equation}{#2\textup{#1}#3}
\newlist{propenum}{enumerate}{1} % also creates a counter called 'propenumi'
\setlist[propenum]{label=\arabic*., ref=\theproposition~item~\arabic*}
\crefalias{propenumi}{proposition}
\newlist{lemmaenum}{enumerate}{1} % also creates a counter called 'propenumi'
\setlist[lemmaenum]{label=\arabic*., ref=\thelemma~item~\arabic*}
\crefalias{lemmai}{lemma}
\newcommand{\chapterendsymbol}{%
\par
\begin{center}\adforn{60}\end{center}
}
\newcommand{\chapterend}{\chapterendsymbol}
\DeclareFlexSymbol{\Gamma} {Var}{latin}{00}
\DeclareFlexSymbol{\Delta} {Var}{latin}{01}
\DeclareFlexSymbol{\Theta} {Var}{latin}{02}
\DeclareFlexSymbol{\Lambda} {Var}{latin}{03}
\DeclareFlexSymbol{\Xi} {Var}{latin}{04}
\DeclareFlexSymbol{\Pi} {Var}{latin}{05}
\DeclareFlexSymbol{\Sigma} {Var}{latin}{06}
\DeclareFlexSymbol{\Upsilon}{Var}{latin}{07}
\DeclareFlexSymbol{\Phi} {Var}{latin}{08}
\DeclareFlexSymbol{\Psi} {Var}{latin}{09}
\DeclareFlexSymbol{\Omega} {Var}{latin}{0A}
\DeclareFlexSymbol{0}{Var}{digit}{30}
\DeclareFlexSymbol{1}{Var}{digit}{31}
\DeclareFlexSymbol{2}{Var}{digit}{32}
\DeclareFlexSymbol{3}{Var}{digit}{33}
\DeclareFlexSymbol{4}{Var}{digit}{34}
\DeclareFlexSymbol{5}{Var}{digit}{35}
\DeclareFlexSymbol{6}{Var}{digit}{36}
\DeclareFlexSymbol{7}{Var}{digit}{37}
\DeclareFlexSymbol{8}{Var}{digit}{38}
\DeclareFlexSymbol{9}{Var}{digit}{39}
%------------------------------------------------------------------------------
% CHANGING TEXT AREA
%------------------------------------------------------------------------------
%\linespread{1.0} % a bit more for Palatino
% 686 (factor 2.2) + 33 head + 42 head \the\footskip
%\areaset[current]{312pt}{761pt}
%\setlength{\marginparwidth}{7em}%
%\setlength{\marginparsep}{2em}%
%------------------------------------------------------------------------------
% Include printonlyused in the first bracket to only show acronyms used in the
% text
\usepackage{acro}
% Nice macros for handling all acronyms in the thesis
%\renewcommand*{\acsfont}[1]{\textssc{#1}} % For MinionPro
% \newcommand*{\aclabelfont}[1]{\acsfont{#1}}
%------------------------------------------------------------------------------
% USING DIFFERENT FONTS
%------------------------------------------------------------------------------
%\usepackage[quiet]{mathspec}
%\usepackage{xltxtra} %also loads xunicode
%\setmathfont(Digits,Latin)[
%Numbers={Lining,Proportional},
%Mapping=tex-text,
%Ligatures={Required, Common},
%]{palatino}
%\setmathfont(Greek)[
%Mapping=tex-text,
%Lowercase=Regular,
%Uppercase=Regular
%]{palatino}
%\setmainfont[
%Mapping=tex-text,
%Ligatures={Required, Common}
%]{palatino}