]> code.delx.au - dotfiles/blob - .vim/abbrs/latexreport.tex
e48b6dabad805c6a41d5662f9e7c1956b9a4eacd
[dotfiles] / .vim / abbrs / latexreport.tex
1 \documentclass[a4paper,12pt]{report}
2
3 % This file must be saved in the UTF8 encoding
4 \usepackage[utf8]{inputenc}
5
6 % These packages need to be included to insert pictures into your report
7 \usepackage[pdftex]{graphicx}
8
9 % Better maths suport
10 \usepackage{amssymb,amsmath}
11
12 % Support links in the pdf file
13 \usepackage{hyperref}
14
15 % Put a medium sized gap between paragraphs
16 \setlength{\parskip}{\medskipamount}
17
18 % Don't indent the start of new paragraphs
19 \setlength{\parindent}{0pt}
20
21 % Changes section numbering somehow...
22 \renewcommand{\thesection}{\arabic{section}}
23
24 % Bibliography style. Aside from plain, there is also apalike.
25 % Look for *.bst files
26 \bibliographystyle{plain}
27
28
29 \title{___The Title goes here}
30 \author{
31 ___First Author\\
32 (email: \tt{___user@example.com}) \\
33 }
34
35 \begin{document}
36 \maketitle
37
38 \begin{abstract}
39 ___Abstract goes here
40 \end{abstract}
41
42 \tableofcontents
43 \newpage
44 \listoffigures
45 \newpage
46
47 \section{___First Section}
48
49
50
51 \bibliography{___something}
52
53 \end{document}
54