-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.tex
More file actions
executable file
·135 lines (108 loc) · 3.4 KB
/
Copy pathpresentation.tex
File metadata and controls
executable file
·135 lines (108 loc) · 3.4 KB
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
%% Beamer presentation template by Luis F. M. Cury 28/12/2024
%% Compile using LuaLaTeX
%% We use LuaLaTex for the package fontspec that allows us to use a system font.
%% Otherwise, LaTex or XeLaTex compiler `should` work.
%% The command to use LuaLaTex is as follows. Synctex is optional.
%% latexmk -synctex=1 -interaction=nonstopmode -file-line-error -lualatex presentation.tex
\documentclass[aspectratio=169, 12pt]{beamer}
\usepackage[english]{babel}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{bm}
\usepackage[backend=biber,language=english,style=abnt,justify,ittitles,giveninits=true]{biblatex} % Citações padrão ABNT
\usepackage{csquotes}
%% Disable this package if you don't want to use LuaLaTex.
%% To use UnB font download it at http://marca.unb.br/arquivosdigitais/files/fontes/UnB_Office_v1.0.zip
%% and follow your OS's installation instructions.
%% Otherwise, comment "%" to use a standard latex font.
\usepackage{fontspec}
\setmainfont{UnB Office}
%% Use beamer configuration based on UnB official colors.
\usepackage{unbBeamer}
%% Numbered captions
\setbeamertemplate{caption}[numbered]
\addbibresource{biblio.bib}
\title[Small Title]{Presentation Title}
\subtitle{Optional subtitle}
\date{DD/MM/YYYY}
\author[Doe]{John Doe\inst{1}}
\institute[UoE]{\inst{1} Template Department\\ University of Examples}
%% Disable lower left-hand navigation symbols.
\beamertemplatenavigationsymbolsempty
\begin{document}
%% Uncomment the following line to put all bibliography regardless of it being
%% individually cited.
%% \nocite{*}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Presentation outline}
\tableofcontents
\end{frame}
\section{Section \#1}
\begin{frame}
\frametitle{Frame title}
Blank frame example.
This is a \alert{text with alert}.
\end{frame}
\section{Section \#2}
\begin{frame}
\frametitle{Frame with columns}
\begin{columns}[c]
\begin{column}{0.49\textwidth}
\begin{enumerate}
\item Delta
\item Echo
\item Foxtrot
\end{enumerate}
\end{column}
\begin{column}{0.49\textwidth}
\begin{itemize}
\item Alpha
\item Bravo
\item Charlie
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\frametitle{Frame with figure}
\begin{figure}
\centering
\includegraphics[height=0.7\textheight]{fig/square.eps}
\caption{An empty square.}
\label{fig:square}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Frame with table}
\begin{table}
\centering
\caption{Fibonacci sequence.}
\begin{tabular}{ccc}
\toprule
$n$ & $a_n$ \\
\midrule
$0$ & $1$ \\
$1$ & $1$ \\
$2$ & $2$ \\
$3$ & $3$ \\
\bottomrule
\end{tabular}
\label{tab:fibonacci_sequence}
\end{table}
\end{frame}
\begin{frame}
\frametitle{Frame with references}
The table \ref{tab:fibonacci_sequence} shows the first 4 numbers of the Fibbonaci sequence.
The figure \ref{fig:square} shows a square.
According to \textcite{key} this is a Beamer template.
This is a Beamer template \cite{key}.
\end{frame}
\begin{frame}[allowframebreaks]
\printbibliography
\end{frame}
\end{document}