Added stub for the main thing and preamble
This commit is contained in:
parent
68985a4a75
commit
bdcf5b25d6
4 changed files with 65 additions and 19 deletions
11
make
11
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 ..
|
|
@ -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}
|
||||
|
|
29
thesis/DoldKan.tex
Normal file
29
thesis/DoldKan.tex
Normal file
|
@ -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}
|
26
thesis/preamble.tex
Normal file
26
thesis/preamble.tex
Normal file
|
@ -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
|
Reference in a new issue