Browse Source

made a make script, and stub for presentation

master
Joshua Moerman 11 years ago
parent
commit
1d0513f451
  1. 3
      .gitignore
  2. 14
      make
  3. 49
      presentation/presentation.tex

3
.gitignore

@ -1,5 +1,8 @@
*.sublime-workspace
.DS_Store
build
*.pdf
*.acn
*.acr
*.alg

14
make

@ -0,0 +1,14 @@
#!/bin/bash
mkdir -p build
cd build
case "$1" in
Presentation) pdflatex "../presentation/presentation.tex"
pdflatex "../presentation/presentation.tex"
mv presentation.pdf ../
esac
cd ..

49
presentation/presentation.tex

@ -0,0 +1,49 @@
\documentclass{beamer}
\usepackage[dutch]{babel}
\usepackage{graphicx}
\usepackage{float}
\usepackage{amssymb}
\usepackage{color}
\usepackage{listings}
\newcommand{\id}{\text{id}}
\newcommand{\cat}[1]{\mathbf{#1}}
\newcommand{\eps}{\varepsilon}
\newcommand{\I}{\,\mid\,}
\newcommand{\then}{\Rightarrow}
\newcommand{\inject}{\hookrightarrow}
\title{Dold-Kan correspondentie}
\author{Joshua Moerman}
\institute[Radboud Universiteit Nijmegen]{Begeleid door Moritz Groth}
\date{}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Ketencomplex}
\begin{frame}
\frametitle{Ketencomplex}
\begin{definition}
$C_n \in \cat{Ab}$
\end{definition}
\pause
Enzoverder
\end{frame}
\begin{frame}
\begin{center}
\Huge Questions?
\end{center}
\end{frame}
\end{document}