diff options
author | Vincent Ambo <tazjin@gmail.com> | 2016-01-20T11·13+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2016-01-20T11·13+0100 |
commit | cb21e47784c5af9e7b3500b6d87fc72da1b32ecd (patch) | |
tree | 355d3e6ea2e098c851c4fb00ac0fb444d5dc9a26 |
Initial check-in
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | Makefile | 11 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | slides.tex | 32 |
4 files changed, 56 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..47b3d4ede12e --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +slides.aux +slides.log +slides.nav +slides.out +slides.pdf +slides.snm +slides.toc diff --git a/Makefile b/Makefile new file mode 100644 index 000000000000..ac5dde3cb32f --- /dev/null +++ b/Makefile @@ -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 diff --git a/README.md b/README.md new file mode 100644 index 000000000000..7f004b7d14ca --- /dev/null +++ b/README.md @@ -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 diff --git a/slides.tex b/slides.tex new file mode 100644 index 000000000000..8322e98de246 --- /dev/null +++ b/slides.tex @@ -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} |