-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipb.cls
144 lines (113 loc) · 2.72 KB
/
ipb.cls
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
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{ipb}[2015/11/24 MSc class]
\LoadClass[12pt,twoside]{report}
%% Required packages.
% Line spacing
\RequirePackage{setspace}
\RequirePackage{graphicx}
\RequirePackage[utf8]{inputenc}
\RequirePackage[acronym,toc,nonumberlist]{glossaries}
\RequirePackage{emptypage}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}
\ProcessOptions\relax
%%%%%
%%%%% SETUP MARGINS AND PENALTIES
%%%%%
% We need 1" margins except on the binding edge, where it is 1 1/2"
% Theses may be either single or double sided
\if@twoside
\setlength\oddsidemargin {0\p@}
\setlength\evensidemargin {0\p@}
\setlength\marginparwidth {40\p@}
\else
\setlength\oddsidemargin {0\p@}
\setlength\evensidemargin {0\p@}
\setlength\marginparwidth {40\p@}
\fi
\marginparsep 10pt
\topmargin 0pt \headsep 1cm
\textheight 22cm \textwidth 16cm
% Disallow page breaks at hyphens (this will give some underfull vbox's,
% so an alternative is to use \brokenpenalty=100 and manually search
% for and fix such page breaks)
\brokenpenalty=10000
\setstretch{1.0}
%%%%%
%%%%% SETUP COMMANDS
%%%%%
\def\courseyear#1{\gdef\@courseyear{#1}}
% % % conditionals
\newif\iffigurespage
\newif\iftablespage
\figurespagetrue
\tablespagetrue
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\def\coverpage{
\setlength{\voffset}{-1.5cm}
\setlength{\headsep}{5pt}
\begin{center}
\includegraphics[width=0.9\columnwidth, keepaspectratio]{images/hanzelogo.png}\\
\end{center}
\begin{center}
\vspace{4em}
{\Huge\expandafter{\bf \@title}}
\vfill
\vspace{2em}
by
{\Large\textbf{
\@author \ifdefined\@authnum \quad\@authnum \fi\\
}}
\vfill
\vspace{4em}
GRADUATION REPORT
\vfill
\vspace{4em}
\normalsize
Submitted to
Hanze University of Applied Sciences Groningen
\vfill
\vspace{1em}
in partial fulfillment of the requirements \\
for the degree of
\vfill
\vspace{1em}
Master Smart Systems Engineering
\vspace{5.5em}
Groningen\\
\@courseyear
\end{center}
}
\def\beforepreface{%
\pagenumbering{gobble}
\pagestyle{empty}
\coverpage
}
\def\afterpreface{%
\clearpage
\pagenumbering{arabic}
\setcounter{page}{5}
\tableofcontents
\iftablespage
\listoftables
\addcontentsline{toc}{chapter}{\listtablename}
\fi
\iffigurespage
\clearpage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\fi
}
\def\bodystart{%
\clearpage
\pagestyle{plain}}
% Redefine \thebibliography to go to a new page and put an entry in the
% table of contents
\let\@ldthebibliography\thebibliography
\renewcommand{\thebibliography}[1]{\newpage
\@ldthebibliography{#1}%
\addcontentsline{toc}{chapter}{\bibname}}
% Start out normal
\pagestyle{headings}
\makeatother