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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{tex/docstyle}[2021/10/31 v0.1 Styling for my thesis]
% Package options
\newif\ifdraftmode
\DeclareOption{draft}{\draftmodetrue}
\ProcessOptions\relax
%% Page Margins (done with KOMA)
% \PassOptionsToPackage{geometry}{
% a4paper, showframe
% }
% \RequirePackage{geometry}
% \AfterCalculatingTypearea{%
% \geometry{%
% inner = 1cm, outer = 1cm, includeheadfoot
% top = 3cm, bottom = 3cm
% }
% }
%% Need colors
\RequirePackage{xcolor}
%% Pager headers and footers (using KOMA)
\PassOptionsToPackage{scrlayer-scrpage}{autooneside=false, draft=false}
\RequirePackage{scrlayer-scrpage}
\setkomafont{pagenumber}{\sffamily\bfseries\slshape}
\setkomafont{pageheadfoot}{\itshape}
\lehead{\leftmark}
\rohead{\rightmark}
%% Draft date when in draft mode
\ifdraftmode
\RequirePackage{scrtime}
\newcommand{\draftfooterstring}{\footnotesize\slshape (Draft of \today\ at \thistime)}
\cefoot{\draftfooterstring}
\cofoot{\draftfooterstring}
\fi
%% Font configuration
% use roboto for sans serif
\RequirePackage{roboto}
% Bera for monospaced font
\setmonofont[Path=misc/,
BoldFont = VeraMoBd,
ItalicFont = VeraMoIt,
BoldItalicFont = VeraMoBI,
]{VeraMono}
%% Floating captions configuration
% set captions font
\setkomafont{captionlabel}{\sffamily\bfseries}
% set caption style
\setcapindent{0pt}
\renewcommand*{\captionformat}{\quad}
%% Bibliography style
\PassOptionsToPackage{biblatex}{%
backend = biber,
style = ieee,
}
\RequirePackage{biblatex}
%% Set up links
\PassOptionsToPackage{hyperref}{%
bookmarks = true,
%% TODO: set title
% pdftitle = {}
pdfsubject = {Semester Thesis}
pdfauthor = {Naoki Pross, Sara Halter}
plainpages = false,
psepdfpagelabels,
}
\RequirePackage{hyperref}
\hypersetup{
% remove ugly boxes
hidelinks,
% set link colors
colorlinks = true,
anchorcolor = black,
citecolor = black,
filecolor = black,
linkcolor = black,
menucolor = black,
runcolor = black,
urlcolor = {black!50!blue},
urlcolor = black,
}
%% Set up subfigures to look like in IEEE classes
\RequirePackage{subcaption}
\usepackage[labelformat=simple]{subcaption}
\renewcommand\thesubfigure{(\alph{subfigure})}
%% Set up listings
\RequirePackage{listings}
%% create a lstlisting style
\lstdefinestyle{minimalist}{
belowcaptionskip = \baselineskip,
breaklines = true,
inputencoding = utf8,
% frame
frame = leftline,
framerule = 3pt,
rulecolor = \color{cyan!20!white},
% margin
xleftmargin = 5mm,
framexleftmargin = 5mm,
% background
backgroundcolor = \color{white},
% default language:
language = TeX,
showstringspaces = false,
% font
basicstyle = \ttfamily\small,
identifierstyle = \color{black},
keywordstyle = \bfseries \color{blue!70!black},
commentstyle = \color{gray},
stringstyle = \color{orange!60!black},
}
% and set style
\lstset{style=minimalist, escapechar=`}
% vim: set ts=2 sw=2 noet:
|