Initial check-in
This commit is contained in:
commit
cb21e47784
4 changed files with 56 additions and 0 deletions
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
slides.aux
|
||||
slides.log
|
||||
slides.nav
|
||||
slides.out
|
||||
slides.pdf
|
||||
slides.snm
|
||||
slides.toc
|
11
Makefile
Normal file
11
Makefile
Normal 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
6
README.md
Normal 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
32
slides.tex
Normal 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}
|
Loading…
Reference in a new issue