Last active
July 5, 2019 04:13
-
-
Save praton1729/936decf547e0bed962113a7c4ce00136 to your computer and use it in GitHub Desktop.
A sample presentation template. Use xelatex for compilation to use the Fira Code font.
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
\documentclass[10pt]{beamer} | |
\usetheme{metropolis} % Use metropolis theme | |
% \usecolortheme{seahorse} | |
\usepackage{array} | |
\usepackage{float} | |
\usepackage{wrapfig} | |
\usepackage{graphicx} | |
\usepackage{blindtext} | |
\usepackage{lipsum} | |
\title{Sample Presentation} | |
\date{\today} | |
\author{John Doe - 123X \vspace{0.3cm}\\ Collaborator: John Doe, 789X} | |
\institute{XYZ Organization, ABC} | |
\begin{document} | |
\maketitle | |
\begin{frame}{What we need to do} | |
\begin{block}{Aim} | |
\vspace{0.3cm} | |
\blindenumerate | |
\end{block} | |
\end{frame} | |
\begin{frame} | |
\begin{center} | |
\vspace*{\stretch{1}} | |
\LARGE \textit{Fin.} | |
\vspace*{\stretch{1}} | |
\end{center} | |
\end{frame} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment