forked from Fancy-Templates/FancyBeamer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty-slides.tex
More file actions
33 lines (24 loc) · 1.45 KB
/
empty-slides.tex
File metadata and controls
33 lines (24 loc) · 1.45 KB
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
\documentclass[
aspectratio=169, % default is 43
8pt % font size, default is 11pt
]{beamer}
% This line of code just tries to find the fancybeamer package automatically. if you know the path to the fancybeamer package, you can replace the following line with \def\templatepath{path/to/fancybeamer/}
\IfFileExists{../fancyuulm.sty}{\def\templatepath{../}}{\IfFileExists{../fancy-beamer-uulm/fancyuulm.sty}{\def\templatepath{../fancy-beamer-uulm/}}{\IfFileExists{./fancy-beamer-uulm/fancyuulm.sty}{\def\templatepath{./fancy-beamer-uulm/}}{\def\templatepath{}}}}
\usepackage{\templatepath fancybeamer} % use the fancy beamer package
\usepackage{\templatepath fancyuulm} % use the uulm colorpalette
%\usepackage[ngerman]{babel} % use this line for slides in German
\title[Short Title]{Title} % short title is used for the slide footer but optional
\subtitle[Short Subtitle]{Subtitle} % subtitles are optional at all
\author[Short Author]{Author} % short author title is used for the slide footer but optional
\date{\today} % use a particular date here if needed
% set paths for logos
\setpaths{{\templatepath logos/}}
\fancylogos{sp,uulm} % define logos that are spread evenly across the bottom of the title slide
\begin{document}
\maketitle[example-image][50] % title slide with optional title picture and parameter to move it upwards
\section{First Section}
\subsection{First Subsection}
\begin{frame}{\insertsubsection}
Content of first slide
\end{frame}
\end{document}