OpenCores
URL https://opencores.org/ocsvn/phr/phr/trunk

Subversion Repositories phr

[/] [phr/] [trunk/] [doc/] [informe-tesis/] [phd-thesis-template-master/] [thesis.tex] - Blame information for rev 208

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 125 guanucolui
% ******************************* PhD Thesis Template **************************
2
% Please have a look at the README.md file for info on how to use the template
3
 
4 127 guanucolui
\documentclass[twoside,a4paper,12pt,numbered,print,index]{Classes/PhDThesisPSnPDF}
5 125 guanucolui
 
6
% ******************************************************************************
7
% ******************************* Class Options ********************************
8
% *********************** See README for more details **************************
9
% ******************************************************************************
10
 
11
% `a4paper'(The University of Cambridge PhD thesis guidelines recommends a page
12
% size a4 - default option) or `a5paper': A5 Paper size is also allowed as per
13
% the Cambridge University Engineering Deparment guidelines for PhD thesis
14
%
15
% `11pt' or `12pt'(default): Font Size 10pt is NOT recommended by the University
16
% guidelines
17
%
18
% `oneside' or `twoside'(default): Printing double side (twoside) or single
19
% side.
20
%
21
% `print': Use `print' for print version with appropriate margins and page
22
% layout. Leaving the options field blank will activate Online version.
23
%
24
% `index': For index at the end of the thesis
25
%
26
% `draft': For draft mode without loading any images (same as draft in book)
27
%
28
% `abstract': To generate only the title page and abstract page with
29
% dissertation title and name, to submit to the Student Registry
30
%
31
% ************************* Custom Page Margins ********************************
32
%
33
% `custommargin`: Use `custommargin' in options to activate custom page margins,
34
% which can be defined in the preamble.tex. Custom margin will override
35
% print/online margin setup.
36
%
37
% *********************** Choosing the Fonts in Class Options ******************
38
%
39
% `times' : Times font with math support. ( The Cambridge University guidelines
40
% recommend using times)
41
%
42
% `fourier': Utopia Font with Fourier Math font
43
%
44
% `customfont': Use `customfont' option in the document class and load the
45
% package in the preamble.tex
46
%
47
% default or leave empty: `Latin Modern' font will be loaded.
48
%
49
% ********************** Choosing the Bibliography style ***********************
50
%
51
% `authoryear': For author-year citation eg., Krishna (2013)
52
%
53
% `numbered': (Default Option) For numbered and sorted citation e.g., [1,5,2]
54
%
55
% `custombib': Define your own bibliography style in the `preamble.tex' file.
56
% `\RequirePackage[square, sort, numbers, authoryear]{natbib}'
57
%
58
% **************************** Choosing the Page Style *************************
59
%
60
% `default (leave empty)': For Page Numbers in Header (Left Even, Right Odd) and
61
% Chapter Name in Header (Right Even) and Section Name (Left Odd). Blank Footer.
62
%
63
% `PageStyleI': Chapter Name next & Page Number on Even Side (Left Even).
64
% Section Name & Page Number in Header on Odd Side (Right Odd). Footer is empty.
65
%
66
% `PageStyleII': Chapter Name on Even Side (Left Even) in Header. Section Number
67
% and Section Name in Header on Odd Side (Right Odd). Page numbering in footer
68
 
69
 
70
% ********************************** Preamble **********************************
71
% Preamble: Contains packages and user-defined commands and settings
72
\input{Preamble/preamble}
73
 
74
% ************************ Thesis Information & Meta-data **********************
75
%% The title of the thesis
76
\title{Plataforma de Hardware Reconfigurable}
77
%\texorpdfstring is used for PDF metadata. Usage:
78
%\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg.,
79
%\texorpdfstring{$sigma$}{sigma}
80
 
81
%% The full name of the author
82
\author{Luis Alberto Guanuco}
83
 
84
%% Department (eg. Department of Engineering, Maths, Physics)
85
\dept{Departamento de Ingeniería Electrónica}
86
 
87
%% University and Crest
88
\university{Universidad Tecnológica Nacional -- Facultad Regional Córdoba}
89
\crest{\includegraphics[width=0.25\textwidth]{logoUTN}}
90
 
91
%% You can redefine the submission text:
92
% Default as per the University guidelines: This dissertation is submitted for
93
% the degree of Doctor of Philosophy
94
%\renewcommand{\submissiontext}{change the default text here if needed}
95
 
96
%% Full title of the Degree
97
\degree{Ingeniero Electrónico}
98
 
99
%% College affiliation (optional)
100 126 guanucolui
\college{Cátedra Proyecto Final}
101 125 guanucolui
 
102
%% Submission date
103 126 guanucolui
\degreedate{2011}
104 125 guanucolui
 
105
%% Meta information
106 126 guanucolui
\subject{LaTeX} \keywords{{HDL} {FPGA} {Laboratorio} {Técnicas Digitales}}
107 125 guanucolui
 
108
 
109
 
110
% ***************************** Abstract Separate ******************************
111
% To printout only the titlepage and the abstract with the PhD title and the
112
% author name for submission to the Student Registry, use the abstract option in
113
% the document class.
114
 
115
\ifdefineAbstract
116
 \includeonly{Abstract/abstract}
117
\else
118
\fi
119
 
120
 
121
% ******************************** Front Matter ********************************
122
\begin{document}
123
 
124
 
125
\frontmatter
126
 
127
 
128
\begin{titlepage}
129
 
130
\maketitle
131
 
132
\end{titlepage}
133
 
134
\include{Dedication/dedication}
135 126 guanucolui
%\include{Declaration/declaration}
136 125 guanucolui
\include{Acknowledgement/acknowledgement}
137
\include{Abstract/abstract}
138
 
139
% *********************** Adding TOC and List of Figures ***********************
140
 
141
\tableofcontents
142
 
143
\listoffigures
144
 
145
\listoftables
146
 
147
% \printnomenclature[space] space can be set as 2.5cm between symbol and
148
% description
149
\printnomencl
150
 
151
% ******************************** Main Matter *********************************
152
\mainmatter
153
 
154 138 guanucolui
\include{Intro/Intro}
155 137 guanucolui
\include{Chapter2/chapter2}
156
\include{Antecedentes/Antecedentes}
157 208 guanucolui
\include{ProyectoPHR/ProyectoPHR}
158
\include{ImplementacionDelProyecto/ImplementacionDelProyecto}
159 130 guanucolui
\include{CostosYFinanciamiento/CostosYFinanciamiento}
160 208 guanucolui
\include{ProtocoloJTAG/ProtocoloJTAG}
161
\include{ProcesoImplementacionHDL/ProcesoImplementacionHDL}
162
\include{ProgramacionDeLaPHR/ProgramacionDeLaPHR}
163 137 guanucolui
\include{ProyectosOpenHW/ProyectosOpenHW}
164 208 guanucolui
%\include{Chapter3/chapter3}
165
\include{Conclusiones/Conclusiones}
166 125 guanucolui
 
167
% ********************************** Back Matter *******************************
168
% ********************************** Bibliography ******************************
169
%\backmatter
170
 
171
\begin{spacing}{0.9}
172
 
173
% Bibliography style previews: http://nodonn.tipido.net/bibstyle.php
174
 
175
\bibliographystyle{apalike}
176
%\bibliographystyle{plainnat} % use this to have URLs listed in References
177
 
178
\cleardoublepage
179
 
180
\bibliography{References/references} % Path to your References.bib file
181
 
182
\end{spacing}
183
 
184
% ********************************** Appendices ********************************
185
 
186
\begin{appendices} % Using appendices environment for more functunality
187
 
188
\include{Appendix1/appendix1}
189 208 guanucolui
%\include{Appendix2/appendix2}
190 125 guanucolui
 
191
\end{appendices}
192
 
193
% *************************************** Index ********************************
194
\printthesisindex % If index is present
195
 
196
\end{document}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.