about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2016-01-20T11·13+0100
committerVincent Ambo <tazjin@gmail.com>2016-01-20T11·13+0100
commitcb21e47784c5af9e7b3500b6d87fc72da1b32ecd (patch)
tree355d3e6ea2e098c851c4fb00ac0fb444d5dc9a26
Initial check-in
-rw-r--r--.gitignore7
-rw-r--r--Makefile11
-rw-r--r--README.md6
-rw-r--r--slides.tex32
4 files changed, 56 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..47b3d4ede1
--- /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 0000000000..ac5dde3cb3
--- /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 0000000000..7f004b7d14
--- /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 0000000000..8322e98de2
--- /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}