diff options
author | thing 1 <thing1@seacrossedlovers.xyz> | 2025-01-09 13:13:54 +0000 |
---|---|---|
committer | thing 1 <thing1@seacrossedlovers.xyz> | 2025-01-09 13:13:54 +0000 |
commit | c5b761663b235f5f75b528d2dbdef5e65bb954fa (patch) | |
tree | 6b4bd45af8fc1c7bf87d374487bcb112d905653e /presentation | |
parent | ef73cc5ea04d8e5828f8e539d516ff04bc9d8e92 (diff) |
created outline/frame for the presentation in latex
Diffstat (limited to 'presentation')
-rwxr-xr-x | presentation/build.sh | 2 | ||||
-rwxr-xr-x | presentation/clean.sh | 4 | ||||
-rw-r--r-- | presentation/presentation.nav | 21 | ||||
-rw-r--r-- | presentation/presentation.snm | 0 | ||||
-rw-r--r-- | presentation/presentation.tex | 51 |
5 files changed, 78 insertions, 0 deletions
diff --git a/presentation/build.sh b/presentation/build.sh new file mode 100755 index 0000000..36001de --- /dev/null +++ b/presentation/build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +pdflatex presentation.tex diff --git a/presentation/clean.sh b/presentation/clean.sh new file mode 100755 index 0000000..7ea3b83 --- /dev/null +++ b/presentation/clean.sh @@ -0,0 +1,4 @@ +#!/bin/bash +shopt -s extglob + +rm -rf !(*.tex|*.sh|ref.bib|images) diff --git a/presentation/presentation.nav b/presentation/presentation.nav new file mode 100644 index 0000000..0244164 --- /dev/null +++ b/presentation/presentation.nav @@ -0,0 +1,21 @@ +\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}} +\headcommand {\beamer@framepages {1}{1}} +\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}} +\headcommand {\beamer@framepages {2}{2}} +\headcommand {\slideentry {0}{0}{3}{3/3}{}{0}} +\headcommand {\beamer@framepages {3}{3}} +\headcommand {\slideentry {0}{0}{4}{4/4}{}{0}} +\headcommand {\beamer@framepages {4}{4}} +\headcommand {\slideentry {0}{0}{5}{5/5}{}{0}} +\headcommand {\beamer@framepages {5}{5}} +\headcommand {\slideentry {0}{0}{6}{6/6}{}{0}} +\headcommand {\beamer@framepages {6}{6}} +\headcommand {\slideentry {0}{0}{7}{7/7}{}{0}} +\headcommand {\beamer@framepages {7}{7}} +\headcommand {\slideentry {0}{0}{8}{8/8}{}{0}} +\headcommand {\beamer@framepages {8}{8}} +\headcommand {\beamer@partpages {1}{8}} +\headcommand {\beamer@subsectionpages {1}{8}} +\headcommand {\beamer@sectionpages {1}{8}} +\headcommand {\beamer@documentpages {8}} +\headcommand {\gdef \inserttotalframenumber {8}} diff --git a/presentation/presentation.snm b/presentation/presentation.snm new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/presentation/presentation.snm diff --git a/presentation/presentation.tex b/presentation/presentation.tex new file mode 100644 index 0000000..20677e0 --- /dev/null +++ b/presentation/presentation.tex @@ -0,0 +1,51 @@ +\documentclass{beamer} +\usetheme{Boadilla} + +\title{FOSS in the developer and privacy space} +\subtitle{Why is it often prefered?} +\author{Lucas Standen} +\institute{QMC} +\date{\today} + +\begin{document} + +\frame{\titlepage} + +\begin{frame} +\frametitle{What does this presentation show?} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{Why did i choose this project?} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{Planning and managing this project} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{My research} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{So why is it prefered} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{How did the project go?} +SOME STUFF +\end{frame} + +\begin{frame} +\frametitle{What would I change?} +SOME STUFF +\end{frame} + + + +\end{document} |