-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
executable file
·72 lines (48 loc) · 1.43 KB
/
main.tex
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
\documentclass{muthesis09}
\usepackage{graphicx}
\usepackage{latexsym}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{url}
\usepackage{notoccite}
% title of thesis -- nouns and stressed words should begin
\title{Minimizing Data Communication Cost in Grid Computing System}
\author{Ekasit Kijsipongse}
\input{preamble}
\begin{document}
\maketitle
%\acknowledgements{
% acknowledgements go here
% your name will appear automatically at the end
%}
\linespacing{1.5}
\input{acknowledgements}
\linespacing{1.0}
\input{abstract}
\thaiabstract{
% body of thai abstract goes here
% the heading is generated automatically
% note that you *cannot* use something like \input{thaiabs} here
}
\tableofcontents
\listoftables % you probably don't want this, even if you have some tables
\listoffigures
% your thesis goes here!
\input{intro} % input file (intro.tex) containing first chapter
\input{literature}
\input{column_based}
\input{pipeline}
\input{multiagent}
\input{conclusions}
%\appendix % use this if you just have one appendix
%\appendices % use this if you have more than one appendix
\appendices
\chapter{First appendix}
\section*{hidden appendix section} % do not show in table of contents
\chapter{Second appendix}
% put appendices here
% file containing refs if you are not using bibtex
\bibliographystyle{muthesis09}
\bibliography{biblio}
\biography % use this to get the biography at the end of the thesis
\end{document}