diff --git a/make b/make index f57a478..0ea6543 100755 --- a/make +++ b/make @@ -5,10 +5,15 @@ cd build case "$1" in -Presentation) pdflatex "../presentation/presentation.tex" - pdflatex "../presentation/presentation.tex" +Presentation) pdflatex "../presentation/presentation.tex" || exit 1 + pdflatex "../presentation/presentation.tex" || exit 1 mv presentation.pdf ../ - + ;; +Thesis) pdflatex "../thesis/DoldKan.tex" || exit 1 + pdflatex "../thesis/DoldKan.tex" || exit 1 + mv DoldKan.pdf ../ + ;; +*) echo "Please provide on of the following arguments: Presentation, Thesis" esac cd .. \ No newline at end of file diff --git a/presentation/presentation.tex b/presentation/presentation.tex index fa71d53..e4af61e 100644 --- a/presentation/presentation.tex +++ b/presentation/presentation.tex @@ -2,21 +2,7 @@ \usepackage[dutch]{babel} -\usepackage{graphicx} -\usepackage{float} -\usepackage{amssymb} -\usepackage{color} -\usepackage{listings} - -\newcommand{\id}{\text{id}} -\newcommand{\N}{\mathbb{N}} -\newcommand{\Z}{\mathbb{Z}} -\newcommand{\cat}[1]{\mathbf{#1}} -\newcommand{\eps}{\varepsilon} -\newcommand{\I}{\,\mid\,} -\newcommand{\then}{\Rightarrow} -\newcommand{\inject}{\hookrightarrow} -\newcommand{\del}{\partial} +\input{../thesis/preamble} \title{Dold-Kan correspondentie} \author{Joshua Moerman} @@ -58,4 +44,4 @@ Definieer: $H_n(C) = ker(\del_n) / im(\del_{n+1})$ \end{center} \end{frame} -\end{document} \ No newline at end of file +\end{document} diff --git a/thesis/DoldKan.tex b/thesis/DoldKan.tex new file mode 100644 index 0000000..d8a84ee --- /dev/null +++ b/thesis/DoldKan.tex @@ -0,0 +1,29 @@ +\documentclass[12pt]{amsproc} + +% a la fullpage +\usepackage{geometry} +\geometry{a4paper} +\geometry{twoside=false} + +% Activate to begin paragraphs with an empty line rather than an indent +\usepackage[parfill]{parskip} +\setlength{\marginparwidth}{2cm} + +\newtheorem{theorem}{Theorem}[section] +\newtheorem{definition}[theorem]{Definition} +\newtheorem{lemma}[theorem]{Lemma} + +\input{../thesis/preamble} + +\title{Dold-Kan Correspondence} +\author{Joshua Moerman} + +\begin{document} +\maketitle + + +% \listoftodos +% \nocite{*} +% \bibliographystyle{alpha} +% \bibliography{references} +\end{document} diff --git a/thesis/preamble.tex b/thesis/preamble.tex new file mode 100644 index 0000000..85e9aca --- /dev/null +++ b/thesis/preamble.tex @@ -0,0 +1,26 @@ +\usepackage{graphicx} +\usepackage{float} +\usepackage{amssymb} +\usepackage{color} +\usepackage{listings} + +\newcommand{\id}{\text{id}} +\newcommand{\N}{\mathbb{N}} +\newcommand{\Z}{\mathbb{Z}} +\newcommand{\cat}[1]{\mathbf{#1}} +\newcommand{\eps}{\varepsilon} +\newcommand{\I}{\,\mid\,} +\newcommand{\then}{\Rightarrow} +\newcommand{\inject}{\hookrightarrow} +\newcommand{\del}{\partial} + +\newcommand{\todo}[1]{ + \addcontentsline{tdo}{todo}{\protect{#1}} + $\ast$ \marginpar{\tiny $\ast$ #1} +} +\makeatletter + \newcommand \listoftodos{\section*{Todo list} \@starttoc{tdo}} + \newcommand\l@todo[2]{ + \par\noindent \textit{#2}, \parbox{10cm}{#1}\par + } +\makeatother