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
|
%
%%
%% Template for the class vxulicentiate by Robert Nyqvist, 2007.
%%
%% For more information see http://www.vxu.se/msi/utb/exarb/lic-xml
%
% The class is build on book, with some options exculded.
% Defualt option is 10pt, onecolumn, openanny and twoside.
\documentclass{vxulicentiate}
% The following packages is loaded by vxulicentiate:
%
% color, fancyhdr, geometry, graphicx och ifpdf.
\usepackage[T1]{fontenc}
\usepackage[swedish,english]{babel}
\usepackage[latin1]{inputenc}
\author{}
\title{}
\subtitle{}
\publyear{}
\discipline{}
\ISRN{}{}
% Syntax: \ISRN{<subject>}{<no>} where the <subject> is one of
% the following:
%
% DV = datavetenskap
% MA = matematik/tillämpad matematik
% MDI = matematikdidaktik
% TeoF = teoretisk fysik
% TekF = teknisk fysik
%
% and where <no> is the number of the report.
% The following commands are definied in vxulicentiate. You can
% change them with \renewcommand.
%
% \wexio = V\"{a}xj\"{o}
% \university = University
% \department = School of Mathematics and System Engineering
% \publication = Reports from MSI
% \thesistype = Licentiate Thesis
% \information = A thesis for the Degree of Licentiate of Philosophy
% in \@discipline.
% \address = SE-351 95 \wexio, Sweden
% \homepage = http://www.vxu.se/msi
% \ISSN = 1650-2647
% \telephone = +46\,(0)470\,70\,80\,00
% \fax = +46\,(0)470\,840\,04
\begin{document}
\frontcover
\frontmatter
\maketitle
\makecopyright
\dedication{}
\begin{abstract}
%
%
\end{abstract}
\begin{keywords}
%
%
\end{keywords}
\begin{otherlanguage}{swedish}%
\begin{abstract}[Sammanfattning]
%
%
\end{abstract}
\begin{keywords}[Nyckelord]
%
%
\end{keywords}
\end{otherlanguage}
\begin{abstract}[Acknowledgments]
%
%
\end{abstract}
\tableofcontents
\mainmatter
\appendix
\backcover
\end{document}
|