-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.tex
125 lines (101 loc) · 3.59 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
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{hyperref}
\usepackage{minted}
\usepackage[english]{babel}
\mode<presentation>
{
\usetheme[en,widetitle]{AMU3}
\setbeamercovered{transparent = 28}
}
\title[AMU3 Beamer theme]{This is AMU3 theme}
\subtitle{A Beamer presentation theme\\for Adam Mickiewicz University, Pozna{\'n}\\inspired by its visual identity guidelines}
\author[{P. Sk{\'o}rzewski}]{Pawe{\l} Sk{\'o}rzewski}
\date{2023}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\section{Introduction}
\begin{frame}
\frametitle{Introduction}
\textbf{AMU3} theme is an \emph{unofficial} \LaTeX{} Beamer theme for Adam Mickiewicz University, Poznań.
\medskip
It has been prepared on the basis of the template no.~3 for MS~PowerPoint, avalilable from the university's visual identity guidelines webpage, at \url{https://siw.amu.edu.pl}
\end{frame}
\section{Options}
\begin{frame}[containsverbatim]
\frametitle{Available options}
AMU3 theme supports the following options with the
\mintinline{latex}{\usetheme[]{AMU3}} command:
\begin{description}
\item [\texttt{en}] sets the Adam Mickiewicz University's wordmark on the title page to the English version
\item [\texttt{widetitle}] allows title page texts to overlap the eagle watermark (useful for long titles / subtitles / lists of authors)
\end{description}
\begin{exampleblock}{Examples}
\begin{minted}{latex}
\usetheme{AMU3} % Polish version (default)
\usetheme[en]{AMU3} % English version
\usetheme[widetitle]{AMU3}
% Polish version with wide title
\usetheme[en,widetitle]{AMU3}
% English version with wide title
\end{minted}
\end{exampleblock}
\end{frame}
\section{Examples}
\begin{frame}
\frametitle{Itemized list}
Lorem ipsum dolor sit amet, consectetur adipisicing elit:
\begin{itemize}
\item sed do eiusmod tempor et dolore magna,
\item ullamco laboris ea commodo consequat:
\begin{itemize}
\item duis aute irure in,
\item velit esse dolore
\begin{itemize}
\item abc 123
\end{itemize}
\end{itemize}
\item sint occaecat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Enumerated list}
Lorem ipsum dolor sit amet, consectetur adipisicing elit:
\begin{enumerate}
\item sed do eiusmod tempor et dolore magna,
\item ullamco laboris ea commodo consequat:
\begin{enumerate}
\item duis aute irure in,
\item velit esse dolore
\begin{enumerate}
\item abc 123
\end{enumerate}
\end{enumerate}
\item sint occaecat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{Blocks}
\begin{theorem}[A sample theorem]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{theorem}
\begin{alertblock}{Alert}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{alertblock}
\begin{exampleblock}{Example}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{exampleblock}
\end{frame}
\end{document}