-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
69 lines (49 loc) · 1.42 KB
/
report.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
\documentclass[es]{uc3mreport}
\usepackage{lipsum} % generates dummy text
\usepackage{import}
% general config
\graphicspath{{img/}} % Images folder
\addbibresource{references.bib} % bibliography file
\degree{Grado en Linux}
\subject{LaTeXología}
\year{2024-2025} % academic year
\group{69}
\author{
Tu Nombre Aquí -- 100042069\\
Otro Nombre Allá -- 100069420
}
% \team{Equipo 69} % optional
\shortauthor{\abbreviateauthor{Tu Nombre}{Aquí} y \abbreviateauthor{Otro Nombre}{Allá}} % optional
\lab{Práctica 0}
\title{La mejor memoria de la historia}
% \shorttitle{La mejor memoria de la historia} % optional
\professor{Perico de los Palotes} % optional
% report
\begin{document}
\makecover
\tableofcontents
% \listoffigures
% \listoftables
% contenidos
\begin{report}
\part{Mi parte}
\lipsum[1] \parencite{cicero45finibus}
\section{Mi sección}
\lipsum[1]
\subsection{Mi subsección}
\lipsum[2-4]\footnote{Caca de la vaca Paca.}
\subsubsection{Mi subsubsección}
\lipsum[2-4]
\end{report}
% bibliography
\label{bibliography}
\part{Referencias}
\printbibliography
% \printbibliography[heading=bibintoc,title={Referencias}] % alternative
% appendices
\begin{appendices}
\part{Apéndices} % optional
\section{Mi apéndice}
\lipsum[1]
\end{appendices}
\end{document}