-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.tex
65 lines (47 loc) · 1.35 KB
/
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
% !TeX root = ./test.tex
% !TEX program = xelatex
\documentclass[topmenu]{taltechslides}
% DEFINE HOW TOC IS DISPLAYED
\AtBeginSection[]
{
\begin{frame}<beamer>
% \frametitle{Outline}
\begin{columns}[t]
\begin{column}{.5\textwidth}
\tableofcontents[currentsection, hideothersubsections, sections={1-3}]
\end{column}
\begin{column}{.5\textwidth}
\tableofcontents[currentsection, hideothersubsections, sections={4-6}]
\end{column}
\end{columns}
\end{frame}
}
\begin{document}
% MAKE THE TITLE PAGE
\maketitle
% START NEW PART (optional?)
\part{Main}
% START NEW SECTION
\section{One}
% START NEW FRAME
\begin{frame}[fragile]
\frametitle{Frame title}
Normal text, \textit{in italics}, \texttt{mono font test}.
\(E=mc^2\)
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% FULL PAGE IMAGE (BACKGROUND) %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
{% One slide with full page image
\beamertemplatenavigationsymbolsempty
% \setbeamertemplate{navigation symbols}{}
\setbeamertemplate{background canvas}{\includegraphics[height = \paperheight, width = \paperwidth]{satellite.jpg}}
\begin{frame}[plain]\end{frame}
}
\section{Two}
\begin{frame}[fragile]
\frametitle{More slides}
\end{frame}
\end{document}