-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.tex
More file actions
62 lines (49 loc) · 1.17 KB
/
sample.tex
File metadata and controls
62 lines (49 loc) · 1.17 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
\documentclass{beamer}
% Change the theme
\usetheme{UTEC2020}
\title{My Presentation}
%subtitle will be the name course
\subtitle{CS1D02 Estructuras Discretas II}
\author{Prof. Nombre Apellido}
\institute{UTEC}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
%-----------------------------------------------
{\usebackgroundtemplate{\includegraphics[width=\paperwidth, height=\paperheight]{imgBeamer/ContentFrame}}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
}
%-----------------------------------------------
\begin{frame}{Title}{Subtitle}
\begin{theorem}
There is no largest prime number.
\end{theorem}
\end{frame}
%-----------------------------------------------
\section{Section 1}
\begin{frame}{Title 2}{}
\begin{exampleblock}{Ejemplo}
Es un exampleblock
\end{exampleblock}
\begin{itemize}
\item 1 \alert{hola}
\item 2
\begin{itemize}
\item 1.1
\end{itemize}
\end{itemize}
\end{frame}
%-----------------------------------------------
\subsection{Subsection 1.1}
\begin{frame}{Title 3}{}
\begin{definition}
Aqui van definiciones
\end{definition}
\end{frame}
%-----------------------------------------------
\end{document}