-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
143 lines (108 loc) · 4.87 KB
/
presentation.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
%%%%%%%%%%%%%%%%%%%%
% Copyright and authorship: Fernando Oleo Blanco.
%
% Thanks to all the people that helped me get to where I am.
% Free use, just acknowledge the authors.
%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%
% IMPORTANT
% THIS DOCUMENT REQUIRES LuaLaTeX OR XeLaTeX AS THE PROCESSING ENGINE
% SOME "SPECIAL" VARIABLES HAVE BEEN SET AT THE BOTTOM OF THE FILE TO HELP
% IT SHOULD WORK AUTOMATICALLY WITH TeXstudio AND Emacs
%%%%%%%%%%%%%%%%%%%%
%%% Beamer is the presentation class
\documentclass[12pt]{beamer}
%%%%%%%%%%%%%%%%%%%%
% Read the Beamer documentation.
% It is very powerful, but it can be a bit tricky to get right.
% Slides can receive positioning options such as \begin{frame}[t],
% content options such as [plain] or for verbatim environments [fragile].
% If a slide should be "breakable", the use the [allowframebreaks] option
%%%%%%%%%%%%%%%%%%%%
% For general information and help about LaTeX, refer to https://www.overleaf.com/learn
%%% Packages
% Please, read the "loaded-thesis.sty" document to see what is actually loaded and how to use it. Some configuration options for a set of packages is also present there. Change those if you need it.
\usepackage{loaded-thesis}
%% References configuration
\usepackage[nameinlink]{cleveref} % Better referencing that default LaTeX or \hyperref. Must be loaded after hyperref and asmmath
%% Language configuration
\usepackage[spanish, english]{babel}
% The last language in the list is the main language of the document.
% Select your preferred language, change the language in the middel of the document by using \selectlanguage{spanish}
% babel also allows to change the font used depending on the language
% IMPORTANT: if you compile the document with one language (say english) and then change it to another, the automatically generated files in the directory need to be deleted! Especially the .aux file!
%% Bibliography configuration
\usepackage[backend=biber,
style=numeric,
sorting=none]{biblatex}
% Citation configuration. We use biblatex, which is more
% complex, but as customizable as it gets.
% Please, modify this to your liking.
% IMPORTANT: this requires biber to be installed and run every time
% you change the .bib file! To make it easier, if you are using TeXStudio, do the following:
% 1. Go to options. 2. Select the Build menu. 3 In standard bibliography, change bibtex to biber. 4. Profit
% These changes will allow the editor to detect any changes and "recompile" the files if needed.
% For other editors see: https://tex.stackexchange.com/questions/154751/biblatex-with-biber-configuring-my-editor-to-avoid-undefined-citations
% See link for a quick introduction: https://tex.stackexchange.com/questions/26516/how-to-use-biber/34136
% If you are having issues with the bibliography, please, search for how to install and run biber!
% Specialised packages. Please, read their documentation as they provide a lot of functionality.
% Bibliography resource
\addbibresource{main.bib} % Read bibliography entries/database
\renewcommand*{\nameyeardelim}{\addcomma\addspace} % To add a coma after et al. -> et al.,
%%% Font configuration
% Change the mono font in order to support more Unicode characters
\setmonofont{DejaVu Sans Mono}[Scale=MatchLowercase]
% Link colour setup. If you want colours, set "colorlinks" to "true"
\hypersetup{
colorlinks = true, % Colour links. Set to false to let the text be black
citecolor = red,
urlcolor = blue,
linkcolor = red,
% hidelinks = true, % Uncomment to hide all link indications, such as boxes
} % Change this options to your liking
%%% PGFplots version standard
\pgfplotsset{compat=1.18} % Newest version as of 2022-09-23 is 1.18
%%% Beamer theme
\usetheme[block=fill]{metropolis}
\begin{document}
%%% Author and presentation information
\author{Author Name \\ [email protected]
\hfill \href{https://example.com}{Example.link}}
\title{Template for a {\LaTeX} presentation}
% \subtitle{}
% \logo{} % Company or institution logo
\institute{My respectable Institution}
\date{\today} % Set the presentation date
% \subject{} % Set the topic if necessary
%%% Some customisation options. They are particular to this template. Read the documentation of the "metropolis" theme
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[page number]
%%% Initial slide sequence
% Title
\begin{frame}[plain]
\maketitle
\end{frame}
% Table of contents
\begin{frame}{Table of Contents}
\tableofcontents
\end{frame}
% Start creating sections
\section{First section}
\begin{frame}{Title of the first section}
\begin{block}{This is a block}
Some text in a block.
\end{block}
\end{frame}
\end{document}
%%%
% Here we leave a few variables that help editors select the correct TeX engine
%%%
% Emacs setup
%%% Local Variables:
%%% mode: latex
%%% coding: utf-8
%%% TeX-engine: luatex
%%% TeX-master: t
%%% End:
% TeXstudio setup
% !TeX program = lualatex%%% Local Variables: