forked from wannesm/adsphd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcover_sample.tex
More file actions
93 lines (73 loc) · 2.71 KB
/
cover_sample.tex
File metadata and controls
93 lines (73 loc) · 2.71 KB
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
% This file illustrates how to create the full cover page 'manually'. Normally
% this should only be done on Windows systems as on Linux/MacOS, the generation
% of the cover page is fully automated via the 'make cover' or
% 'python3 run.py cover' command.
%
% Changes should only be made between the markers '%%% COVER: Settings %%%' and
% '%%% COVER: End settings %%%' (these could/should be copy/pasted from
% thesis.tex).
\documentclass[cam,cover]{adsphd}
\usepackage{printlen}
\uselengthunit{mm}
%%% COVER: Settings %%%
\title{Multiscale methods for the simulation of
molecular dynamics and stochastic models}
%\subtitle{Multiscale computing for Dummies}
\author{Yves}{Frederix}
\supervisor{Prof.~dr.~ir.~D.~Roose}{}
%\cosupervisor{Prof.~dr.~ir.~R.Cools}{}
\president{Prof.~dr.~ir.~Mr.~De~Voorzitter}
\jury{Prof.~dr.~ir.~Den~Ene\\
Prof.~dr.~ir.~Den Andere
}
\externaljurymember{Prof.~dr.~Het~extern~jurylid}{Ver weg}
\phddegree{Engineering} % "Doctor of ..."
\faculty{Faculty of Engineering}
\department{Department of Computer Science}
\researchgroup{Scientific Computing Group}
\address{Celestijnenlaan 200A box 2402}
% \addresscity{B-3001 Heverlee} % This is the default value. Note
% that 'B-3001 Leuven' is _incorrect_!!
% [http://www.kuleuven.be/communicatie/schrijven/taalgebruik.html]
\date{September 2010}
%\udc{XXX.XX} % UDC is no longer necessary.
\depot{XXXX/XXXX/XX} % Leave out the initial D/ (it is added
% automatically)
\isbn{XXX-XX-XXXX-XXX-X}
% Set spine width:
\setlength{\adsphdspinewidth}{9mm}
%% Set bleeds
%\setlength{\defaultlbleed}{7mm}
%\setlength{\defaultrbleed}{7mm}
% Set custom cover page
% \setcustomcoverpage{mycoverpage.tex} % mycoverpage.tex is the default
%%% COVER: End settings %%%
% Compute total page width
\newlength{\fullpagewidth}
\setlength{\fullpagewidth}{2\adsphdpaperwidth}
\addtolength{\fullpagewidth}{2\defaultlbleed}
\addtolength{\fullpagewidth}{2\defaultrbleed}
\addtolength{\fullpagewidth}{\adsphdspinewidth}
\geometry{
paperwidth=\fullpagewidth,
paperheight=\adsphdpaperheight,
}
\pagestyle{empty}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makefullcoverpage{\adsphdspinewidth}{}
\newlength{\testje}
\setlength{\testje}{10mm}
\mbox{}
\newpage
\subsection*{Used settings:}
\begin{itemize}
\item Spine width: \printlength{\adsphdspinewidth}
\item Left bleed: \printlength{\lbleed}
\item Right bleed: \printlength{\rbleed}
\item Paper width: \printlength{\adsphdpaperwidth}
\item Paper height: \printlength{\adsphdpaperheight}
\item Text width: \printlength{\textwidth}
\item Text height: \printlength{\textheight}
\end{itemize}
\end{document}