forked from tairosonloa/UC3M_LaTeX_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.tex
108 lines (88 loc) · 5.31 KB
/
document.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
\documentclass[10pt, english, pdftex]{template/UC3M_document}
% \documentclass[10pt, spanish, pdftex]{template/UC3M_document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% UC3M Work report template %
% Universidad Carlos III de Madrid %
% Author: Aitor Alonso Núñez %
% Last update: January 2019 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Preamble %%%%%
\author{Aitor Alonso Núñez} % This is me! You should write here your name (for PDF metadata)
%%%%% About the authors (will be used on title page and header) %%%%%
%%% Indicate the number of authors by uncommenting the right option.
% \authorstwotrue % 1 or 2 authors
% \authorsthreetrue % 3 authors
\authorsfourtrue % 4 authors
%%% Fill with the authors data. You can leave empty keys {} if you need to and also if you provide more info that number of authors indicated it will be ignored.
% If you selected \authorstwotrue or \authorsthreetrue (1 to 3 authors)
\authorsuptothree{Name1 Lastname1}{NIA 100XXXXXX}{Gr. XX}{Name2 Lastname2}{NIA 100XXXXXX}{Gr. XX}{Name3 Lastname3}{NIA 100XXXXXX}{Gr. XX}
% If you selected \coauthorsfourtrue (4 authors)
\authorsfour{Name1 Lastname1}{NIA 100XXXXXX}{Name2 Lastname2}{NIA 100XXXXXX}{Name3 Lastname3}{NIA 100XXXXXX}{Name4 Lastname4}{NIA 100XXXXXX}{Group XX}
%%% If you want to show coauthors email address on the title page, uncomment \emailtrue. Comment it otherwise.
\emailtrue
% You can leave empty keys {} if you need to and also if you provide more info that number of authors indicated or \emailtrue is commented it will be ignored.
%%%%% Basic data about the document (Degree, subject, title, campus, page number custom text) %%%%%
\documentdata{Degree}{Subject}{Document title}{Campus}{Page }
%%%%% Page style %%%%%
\header
\footer
\pagestyle{fancy}
\begin{document}
%%%%% Page title %%%%%
\titleMain
%%%%% Index %%%%%
\begin{spacing}{0.5}
% \shipout\null % Blank page before index (after title page)
\hypersetup{linkcolor=black} % References/links on the index will remain black color
\tableofcontents\newpage % Index of the document
% \listoffigures\newpage % Index of pictures
% \listoftables\newpage % Index of tables
\end{spacing}
%%%%% DOCUMENT CONTENT %%%%%
%% VERY IMPORTANT!!! On the first line of this .tex file, select Spanish or English language to coincide with document text language
\section{Section label}\label{section_label}
Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur,
quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos. Eu sit tincidunt incorrupte definitionem,
vis mutat affert percipit cu, eirmod consectetuer signiferumque eu per. In usu latine equidem dolores. Quo no falli viris intellegam, ut fugit
veritus placerat per.
\subsection{Subsection label}
Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur,
quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos. Eu sit tincidunt incorrupte definitionem,
vis mutat affert percipit cu, eirmod consectetuer signiferumque eu per. In usu latine equidem dolores. Quo no falli viris intellegam, ut fugit
veritus placerat per.
\subsubsection{Subsubsection label}
Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur,
quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos. Eu sit tincidunt incorrupte definitionem,
vis mutat affert percipit cu, eirmod consectetuer signiferumque eu per. In usu latine equidem dolores. Quo no falli viris intellegam, ut fugit
veritus placerat per.
Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur,
quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos. Eu sit tincidunt incorrupte definitionem,
vis mutat affert percipit cu, eirmod consectetuer signiferumque eu per. In usu latine equidem dolores. Quo no falli viris intellegam, ut fugit
veritus placerat per.
This is a reference to the \nameref{section_label}
This is an \href{https://github.com/tairosonloa/UC3M_LaTeX_template}{hyperlink to my GitHub repository}.
This is an url: \url{https://github.com/tairosonloa/UC3M_LaTeX_template}
\begin{table}[h!]
\centering
\begin{tabular}{|L{0.3\textwidth}|C{0.3\textwidth}|R{0.3\textwidth}|}
\hline
\hcell{Left} & \hcell{Center} & \hcell{Right} \\ \hline
Left aligned cell with fixed text in it. & Centered aligned cell with fixed text in it. & Right aligned cell with fixed text in it. \\ \hline
\end{tabular}
\end{table}
Here is a list:
\begin{itemize}
\item Item 1
\item Item 2
\begin{itemize}
\item Item 2.1
\begin{itemize}
\item Item 2.1.1
\begin{itemize}
\item Item 2.1.1
\end{itemize}
\end{itemize}
\end{itemize}
\end{itemize}
\end{document}