Add base template tex file and Makefile
This commit is contained in:
parent
57ad1363b2
commit
b6ccb5fc64
2 changed files with 47 additions and 0 deletions
4
report/Makefile
Normal file
4
report/Makefile
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
SRC=report.tex
|
||||||
|
|
||||||
|
all:
|
||||||
|
latexmk -pdf $(SRC)
|
43
report/report.tex
Normal file
43
report/report.tex
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
\documentclass[11pt,a4paper]{article}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{amsfonts}
|
||||||
|
\usepackage{amssymb}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage{indentfirst}
|
||||||
|
\usepackage{enumerate}
|
||||||
|
\usepackage{cite}
|
||||||
|
\usepackage{caption}
|
||||||
|
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
|
||||||
|
|
||||||
|
|
||||||
|
% Custom packages
|
||||||
|
\usepackage{todo}
|
||||||
|
\usepackage{leftrule_theorems}
|
||||||
|
\usepackage{my_listings}
|
||||||
|
\usepackage{my_hyperref}
|
||||||
|
|
||||||
|
\author{}
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\begin{abstract}
|
||||||
|
\todo{abstract}
|
||||||
|
\end{abstract}
|
||||||
|
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\bibliography{../common/refs}
|
||||||
|
\bibliographystyle{alpha}
|
||||||
|
|
||||||
|
\end{document}
|
Loading…
Reference in a new issue