forked from victorpimentel/pfc-scalenet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpfc.tex
94 lines (79 loc) · 2.5 KB
/
pfc.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
% Document for printing A4 and 12pt fonts
\documentclass[a4paper,12pt]{book}
% Almost all header is here
\usepackage{pfc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% METADATA %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Design and Development of a Web-Based GUI for ScaleNet}
\author{Víctor Pimentel Rodríguez}
\date{October 2011}
\hypersetup{pdfsubject=Proyecto Fin de Carrera}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% COVER %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagenumbering{alph}
\thispagestyle{empty}
\pdfbookmark{Title Page}{title}
\input{front/cover}
\newpage
\thispagestyle{empty} \cleardoublepage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% FRONTMATTER %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
\pagenumbering{roman}
\thispagestyle{empty}
\pdfbookmark{Resumen}{resumen}
\input{front/resumen}
\newpage
\thispagestyle{empty} \cleardoublepage
\thispagestyle{empty}
\pdfbookmark{Abstract}{abstract}
\input{front/abstract}
\newpage
\thispagestyle{empty} \cleardoublepage
\thispagestyle{empty}
\pdfbookmark{Acknowledgements}{acknowledgements}
\input{front/acknowledgements}
\newpage
\thispagestyle{empty} \cleardoublepage
\pdfbookmark{Table of Contents}{contents}
\tableofcontents
\listoffigures
\listoftables
\listoflistings
\acresetall
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% MAINMATTER %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
\pagenumbering{arabic}
\input{chapter1/chapter1}
\input{chapter2/chapter2}
\input{chapter3/chapter3}
\input{chapter4/chapter4}
\appendix
\input{appendices/appendixa}
\input{appendices/appendixb}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% BACKMATTER %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\backmatter
\phantomsection
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{unsrt}
\bibliography{bibliography/biblio}
\input{bibliography/acronyms}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\fancyhead[RE]{\sffamily\scshape\footnotesize\leftmark}
\printindex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}