made a make script, and stub for presentation
This commit is contained in:
parent
9419da708f
commit
1d0513f451
3 changed files with 66 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,5 +1,8 @@
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
build
|
||||||
|
*.pdf
|
||||||
|
|
||||||
*.acn
|
*.acn
|
||||||
*.acr
|
*.acr
|
||||||
*.alg
|
*.alg
|
||||||
|
|
14
make
Executable file
14
make
Executable file
|
@ -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
Normal file
49
presentation/presentation.tex
Normal file
|
@ -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}
|
Reference in a new issue