-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCombo_theme_test.tex
81 lines (73 loc) · 1.59 KB
/
Combo_theme_test.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
\documentclass[12pt,a4paper,compress]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usetheme{Combo}
\title{Title}
\author{Firtname Lastname}
\subtitle{Subtitle}
\institute{Institue}
% Print the table of content at the beginning of each section.
% The current section will be highlighted whereas the other ones
% will be shaded
\AtBeginSection[]
{
\begin{frame}{Table of Content}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
\begin{frame}[plain]
\maketitle
\end{frame}
\begin{frame}{Table of Content}
\tableofcontents
\end{frame}
\section{Block}
\subsection{Block1}
\begin{frame}{Frame title}
\begin{block}{Block Title}
Block text
\end{block}
\begin{alertblock}{Alert Block Title}
Alert block text
\end{alertblock}
\begin{example}{Example Title}
Example text
\end{example}
\end{frame}
\section{Items}
\subsection{Items1}
\begin{frame}
\begin{itemize}
\item Item number one
\begin{itemize}
\item Subitem number one
\begin{itemize}
\item Subsubitem number one
\end{itemize}
\end{itemize}
\item Item number two
\item Item number three
\end{itemize}
\begin{enumerate}
\item Item number one
\begin{enumerate}
\item Subitem number one
\begin{enumerate}
\item Subsubitem number one
\end{enumerate}
\end{enumerate}
\item Item number two
\item Item number three
\end{enumerate}
\end{frame}
\section{Testing References}
\subsection{References1}
\begin{frame}
Testing bibliography \cite{article2014test}
\end{frame}
\section*{}
\begin{frame}[allowframebreaks, t]
\bibliography{References}
\end{frame}
\end{document}