Initial check-in

This commit is contained in:
Vincent Ambo 2016-01-20 12:13:25 +01:00
commit cb21e47784
4 changed files with 56 additions and 0 deletions

7
.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
slides.aux
slides.log
slides.nav
slides.out
slides.pdf
slides.snm
slides.toc

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
all: slides.pdf
slides.toc:
lualatex slides.tex
slides.pdf: slides.toc
lualatex slides.tex
clean:
rm -f slides.aux slides.log slides.nav \
slides.out slides.toc slides.snm

6
README.md Normal file
View file

@ -0,0 +1,6 @@
This repository contains the slides for my systemd presentation at Hackeriet.
Requires LaTeX, [beamer][] and the [metropolis][] theme.
[beamer]: http://mirror.hmc.edu/ctan/macros/latex/contrib/beamer/
[metropolis]: https://github.com/matze/mtheme

32
slides.tex Normal file
View file

@ -0,0 +1,32 @@
\documentclass[14pt]{beamer}
\usetheme{metropolis}
\title{systemd}
\subtitle{The standard Linux init system}
\begin{document}
\metroset{titleformat frame=allcaps}
\maketitle
\section{Introduction}
\begin{frame}{What is an init system?}
Foo bar
\end{frame}
\begin{frame}{What is systemd?}
Bar baz
\end{frame}
\begin{frame}{What is an init system?}
Foo bar
\end{frame}
\section{Demo}
\section{Controversies}
\section{Questions?}
\end{document}