This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tex
125 lines (105 loc) · 3.19 KB
/
example.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
\pdfobjcompresslevel=1 %needed if there are faulty pdf/png images
\documentclass[utf8,compress,aspectratio=169]{beamer}
\mode<presentation>
{
\usetheme{Authentic}
}
\usepackage[utf8]{inputenc}
\usepackage{multimedia}
\usepackage{hyperref}
%% General beamer options
\title{The Authentic Beamer Theme}
\subtitle{Straight and simple}
\subject{Example Presentation}
\keywords{latex, beamer, theme}
\author{Patrick Holthaus}
\date{\today}
%%
%% Title page options
%% ------------------
% banner image
% \usebanner[<scale>]{<img>}
% img: image to display (filename) default: <unset>
% scale: scale factor (float) default: 1
% logo image for front page and slides
% \primarylogo[<margin>]{<img>}
% img: image to display (filename) default: <unset>
% margin: margin in page header (length) default: 0pt
% secondary logo image for front page
% \secondarylogo{<img>}
% img: image to display (filename) default: <unset>
%%
%% Slide header options
%% --------------------
% progress bar
% (below title and subtitle)
% \enableprogress[<style>]{<enabled>}
% enabled: enable progress (boolean) default: true
% style: visualization mode (slide or section) default: slide
% section listing instead of primary logo
% (top right corner)
% \enablesection{<enabled>}
% enabled: enable listing default: false
%%
%% Footer options
%% --------------
% page counter
% (lower right corner)
% \enablecounter{<enabled>}
% enabled: enable page counter default: true
% display e-mail address
% (lower center)
% \myemail{<address>}
% address: address to display default: <unset>
% display website
% (lower left)
% \myurl{<address>}
% address: address to display default: <unset>
\myurl{www.some-institute.com}
\begin{document}
\titleframe
\part{Table of Contents}
\begin{frame}{Table of Contents}{}
\tableofcontents
\end{frame}
\part{Main Part}
\section[First Section Title]{My Long Section Title Number One}
\begin{frame}[<+->][c]{My First Frame Title}{This is a subtitle}
\begin{block}{Block title}
\begin{itemize}
\item First item
\begin{itemize}
\item Subitem
\item Another subitem
\end{itemize}
\item Second item
\begin{enumerate}[1]
\item Enumeration
\begin{enumerate}[a)]
\item Third level
\end{enumerate}
\end{enumerate}
\end{itemize}
\end{block}
\end{frame}
\section[Second Section Title]{My Long Section Title Number Two}
\begin{frame}[<+->][t]{Block examples}{This is another funny subtitle}
\begin{alertblock}{Alert block title}
Alert block text is top-aligned
\end{alertblock}
\tobottom
\begin{exampleblock}{Example block title}
This example is placed at the bottom of the frame
\end{exampleblock}
\end{frame}
\part{Thank you}
\begin{frame}[c]{\quad}{\quad}
\centering
Thank you for your kind attention.\\Do you have any further questions?
\vfill
Contact e-mail:\\[.5em]
\usebeamerfont{webpage in footer}
\usebeamercolor[fg]{webpage in footer}
\href{mailto:[email protected]}{[email protected]}
\end{frame}
\end{document}