blob: d7a241e9cff9e197ce4bc081f6a2a2f35807fce7 (
plain)
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
|
% Met ========== onderstreept nederlandse teksten
\@ifundefined{chapter}
{%%%%%%%%%%%%%%% dit is voor article style %%%%%%%%%%%%%%%%%%%%%
\def\@part[#1]#2{\ifnum \c@secnumdepth >\m@ne \refstepcounter{part}
\addcontentsline{toc}{part}{\thepart \hspace{1em}#1}\else
\addcontentsline{toc}{part}{#1}\fi { \parindent 0pt \raggedright
\ifnum \c@secnumdepth >\m@ne \Large \bf Deel \thepart \par \nobreak \fi \huge
% ====
\bf #2\markboth{}{}\par } \nobreak \vskip 3ex \@afterheading }
\def\tableofcontents{\section*{Inhoud\markboth{INHOUD}{INHOUD}}
% ====== ====== ======
\@starttoc{toc}}
\def\listoffigures{\section*{Lijst van figuren\markboth
% ==================
{LIJST VAN FIGUREN}{LIJST VAN FIGUREN}}\@starttoc{lof}}
% ================= =================
\def\listoftables{\section*{Lijst van tabellen\markboth
% ==================
{LIJST VAN TABELLEN}{LIJST VAN TABELLEN}}\@starttoc{lot}}
% ================== ==================
\def\thebibliography#1{\section*{Referenties\markboth
% ===========
{REFERENTIES}{REFERENTIES}}\list
% =========== ===========
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep
\usecounter{enumi}}
\def\newblock{\hskip .11em plus .33em minus -.07em}
\sloppy
\sfcode`\.=1000\relax}
\def\theindex{\@restonecoltrue\if@twocolumn\@restonecolfalse\fi
\columnseprule \z@
\columnsep 35pt\twocolumn[\section*{Index}]
% =====
\markboth{INDEX}{INDEX}\thispagestyle{plain}\parindent\z@
% ===== =====
\parskip\z@ plus .3pt\relax\let\item\@idxitem}
\def\abstract{\if@twocolumn
\section*{Samenvatting}
% ============
\else \small
\begin{center}
{\bf Samenvatting\vspace{-.5em}\vspace{0pt}}
% ============
\end{center}
\quotation
\fi}}
{%%%%%%%%%%%%%% Dit is voor report en book style %%%%%%%%%%%%%%%
\def\@part[#1]#2{\ifnum \c@secnumdepth >-2\relax \refstepcounter{part}
\addcontentsline{toc}{part}{\thepart \hspace{1em}#1}\else
\addcontentsline{toc}{part}{#1}\fi \markboth{}{}
\ifnum \c@secnumdepth >-2\relax \huge\bf Deel \thepart \par \vskip 20pt \fi
% ====
\Huge \bf #1\@endpart}
\def\@chapapp{Hoofdstuk}
% =========
\def\appendix{\par
\setcounter{chapter}{0}
\setcounter{section}{0}
\def\@chapapp{Appendix}
% ========
\def\thechapter{\Alph{chapter}}}
\def\tableofcontents{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\fi\chapter*{Inhoud\@mkboth{INHOUD}{INHOUD}}
% ====== ====== ======
\@starttoc{toc}\if@restonecol\twocolumn\fi}
\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\fi\chapter*{Lijst van figuren\@mkboth
% =================
{LIJST VAN FIGUREN}{LIJST VAN FIGUREN}}\@starttoc{lof}\if@restonecol\twocolumn
% ================= =================
\fi}
\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\fi\chapter*{Lijst van tabellen\@mkboth
% ==================
{LIJST VAN TABELLEN}{LIJST VAN TABELLEN}}\@starttoc{lot}\if@restonecol
% ================== ==================
\twocolumn\fi}
\def\thebibliography#1{\chapter*{Referenties\@mkboth
% ===========
{REFERENTIES}{REFERENTIES}}\list
% ============ ============
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep
\usecounter{enumi}}
\def\newblock{\hskip .11em plus .33em minus -.07em}
\sloppy
\sfcode`\.=1000\relax}
\def\theindex{\@restonecoltrue\if@twocolumn\@restonecolfalse\fi
\columnseprule \z@
\columnsep 35pt\twocolumn[\@makeschapterhead{Index}]
% =====
\@mkboth{INDEX}{INDEX}\thispagestyle{plain}\parindent\z@
% ===== =====
\parskip\z@ plus .3pt\relax\let\item\@idxitem}
\def\abstract{\titlepage
\null\vfil
\begin{center}
{\bf Samenvatting}
% ============
\end{center}}
}
%%%%%%%%%%%%%%%%%%% dit is voor allebei %%%%%%%%%%%%%%%%%%%%%%%%%%
\def\today{\number\day\space\ifcase\month%
\or jan\or feb\or maart\or apr\or mei\or juni%
% === === ===== === === ====
\or juli\or aug\or sept\or okt\or nov\or dec\fi
% ==== === ==== === === ===
\space\number\year}
\def\fnum@figure{Figuur \thefigure}
% ======
\def\fnum@table{Tabel \thetable}
% =====
|