Start article
This commit is contained in:
parent
bdd28f129a
commit
21dbc3e444
14
latex/src/Makefile
Normal file
14
latex/src/Makefile
Normal 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
15
latex/src/main.tex
Normal 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}
|
Loading…
Reference in New Issue
Block a user