From ec405ec8a84bbd3075702b744450de377fa49268 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Wed, 27 Nov 2019 18:02:48 +0100 Subject: [PATCH] Add bibliography to presentation template --- templates/presentation.tex | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/templates/presentation.tex b/templates/presentation.tex index 636913b..4e88bcc 100644 --- a/templates/presentation.tex +++ b/templates/presentation.tex @@ -1,17 +1,28 @@ \documentclass[aspectratio=169]{beamer} -\author[A. U. Thor, Foo Bar]{A. U. Thor\\and\\Foo Bar} -\title{Fooing a bar} +\usepackage{graphicx} +\usepackage[backend=biber,style=alphabetic]{biblatex} +\addbibresource{$HOME/me/bibliotheca.bib} + \usetheme{Luebeck} \usecolortheme{beaver} +\author[A. U. Thor, Foo Bar]{A. U. Thor\\and\\Foo Bar} +\title{Fooing a bar} + \begin{document} - \begin{frame} - \maketitle - \end{frame} - \begin{frame} - \frametitle{This is a cool title} - \framesubtitle{Not as cool, but still cool, this is a subtitle} - Hello World! - \end{frame} +\begin{frame} + \maketitle +\end{frame} + +\begin{frame} + \frametitle{This is a cool title} + \framesubtitle{Not as cool, but still cool, this is a subtitle} + Lisp can be used to foo a bar \cite{sicp} +\end{frame} + +\begin{frame} + \frametitle{Bibliography} + \printbibliography +\end{frame} \end{document}