Start article

This commit is contained in:
Julien CLEMENT 2020-05-06 20:17:42 +02:00
parent bdd28f129a
commit 21dbc3e444
2 changed files with 29 additions and 0 deletions

14
latex/src/Makefile Normal file
View File

@ -0,0 +1,14 @@
FLAGS=-pdf -shell-escape
.PHONY: all clean
all: view
pdf:
latexmk ${FLAGS} main.tex
view: pdf
evince main.pdf
clean:
rm -rf *.aux *.log *.nav *.toc *.snm *.pdf *.out *.pyg _minted* *.fls *.fdb_latexmk

15
latex/src/main.tex Normal file
View File

@ -0,0 +1,15 @@
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\title{Paxos made moderately working}
\date{May 2020}
\begin{document}
\maketitle
\tableofcontents
\pagebreak
\section{Introduction}
\end{document}