Created
October 28, 2018 22:44
-
-
Save airbornemihir/efcf1503e627b3347a2fd482081d8aed to your computer and use it in GitHub Desktop.
Minimal working example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% titlepage-demo.tex | |
\documentclass{beamer} | |
\usepackage{graphicx} | |
\usepackage{tikz} | |
\usetikzlibrary{matrix} | |
\title{Some slides} | |
\date{05 November, 2018} | |
\AtBeginSection[] | |
{ | |
\begin{frame}<beamer> | |
\frametitle{Outline} | |
\tableofcontents[currentsection] | |
\end{frame} | |
} | |
\addtobeamertemplate{navigation symbols}{}{% | |
\usebeamerfont{footline}% | |
\usebeamercolor[fg]{footline}% | |
\hspace{1em}% | |
\large \insertframenumber/\inserttotalframenumber | |
} | |
\begin{document} | |
%--- the titlepage frame -------------------------% | |
\begin{frame}[plain] | |
\titlepage | |
\end{frame} | |
\begin{frame}<beamer> | |
\frametitle{Outline} | |
\tableofcontents | |
\end{frame} | |
%--- the presentation begins here ----------------% | |
\section{FAT32} | |
\begin{frame}{A frame} | |
\end{frame} | |
\section{The models} | |
\begin{frame}{Another frame} | |
\end{frame} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment