-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.tex
140 lines (118 loc) · 2.97 KB
/
template.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
% Created 2022-11-04 Fri 11:35
% Intended LaTeX compiler: pdflatex
\documentclass[presentation, aspectratio=169]{beamer}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\usepackage{minted}
\usepackage{fontspec}
\usepackage[sfdefault,light]{roboto}
\usepackage{beamertools}
% Set hyperlink color
% (url color defined in beamerthemeC2SM.sty, chnages with dark/light mode)
\hypersetup{
colorlinks=true,
linkcolor=url, % choose the color you want
urlcolor=url
}
% Set dates for title and footnote
\def\mydate{December 24, 2022}
\def\mydatefootnote{2022-12-24}
\usetheme[darkmode]{C2SM}
\author{My wonderful self}
\date{\mydate}
\title{The Title}
\subtitle{The more verbose Subtitle}
\hypersetup{
pdfauthor={My wonderful self},
pdftitle={The Title},
pdfkeywords={},
pdfsubject={},
pdfcreator={},
pdflang={English}
}
\begin{document}
\maketitle
\part{First part}
\begin{frame}{The frame title}
\note{note
Talk no more than 1 minute.}
\begin{block}<1->{A normal block}
\begin{itemize}
\item Hello World
\item The 2 following blocks are in an \inlinecode{overprint} environment
\end{itemize}
\end{block}
\begin{overprint}
\onslide<2>
An overprint environment : Blocks replacing this text don't make the following move.
\onslide<3>
\begin{customblock}<2->[bgcolor=plum, itcolor=plum]{A custom color block with columns}
\begin{columns}
\begin{column}{0.6\columnwidth}
Some definitions:
\begin{description}
\item[{toto}] some blabla
\item[{tata}] another blabla
\end{description}
\end{column}
\begin{column}{0.3\columnwidth}
enumerate env:
\begin{enumerate}
\item something
\item Something else
\end{enumerate}
\end{column}
\end{columns}
\end{customblock}
\onslide<4->
\begin{exampleblock}{An example block}
Hello
\end{exampleblock}
\end{overprint}
\onslide<2->
\begin{enumerate}
\item first item
\item second item
\setcounter{enumi}{5}
\item Changing enum counter
\end{enumerate}
\end{frame}
\part{Second part}
\begin{frame}{Frame title 2}
Some blabla
\begin{itemize}
\item super exciting results
\item even more awesome
\end{itemize}
\end{frame}
\begin{frame}{The frame title over 2 lines \\ logo still works!}
\begin{alertblock}{An alerted block}
\begin{enumerate}
\item toto
\item tata
\item tutu
\end{enumerate}
\end{alertblock}
\end{frame}
\begin{frame}[fragile]
\frametitle{Dark mode}
You can compile in \alert{dark mode} using
\begin{codeblock}
\\usetheme\alert{[darkmode]}\{C2SM\}
\end{codeblock}
\end{frame}
\end{document}
%%% Local Variables:
%%% coding: utf-8
%%% mode: latex
%%% TeX-engine: xetex
%%% TeX-command-extra-options: "-shell-escape"
%%% End: