]> code.delx.au - dotfiles/blob - .vim/abbrs/latex_report.tex
c25c459d452220cf680598f146290c511d31fac4
[dotfiles] / .vim / abbrs / latex_report.tex
1 \documentclass[a4paper,12pt]{report}
2 % vim: set tw=78:
3
4 % These packages need ot be included to insert pictures into your report
5 \usepackage[dvips]{graphicx}
6 \include{epsf}
7
8 % Better maths suport
9 \usepackage{amssymb,amsmath}
10
11 % Put a medium sized gap between paragraphs
12 \setlength{\parskip}{\medskipamount}
13
14 % Don't indent the start of new paragraphs
15 \setlength{\parindent}{0pt}
16
17 % Changes section numbering somehow...
18 \renewcommand{\thesection}{\arabic{section}}
19
20
21 \title{The Title goes here}
22 \author{
23 ___First Author\\
24 (email: {\tt ___user@example.com}) \\
25 }
26
27 \begin{document}
28 %The \maketitle command puts today's date on your document
29 \maketitle
30
31 \begin{abstract}
32 ___Abstract goes here
33 \end{abstract}
34
35 % The table of contents is made automatically
36 \tableofcontents
37 \newpage
38 \listoffigures
39 \newpage
40
41 \section{___First Section}
42
43
44
45 %The {99} in the commad below tells LaTeX not to expect any numbers wider
46 %than the width of the number 99 (ie. there are no more than 99 referenced
47 % items)
48 \begin{thebibliography}{99}
49 % The command below gives the item a label which is used in citing references
50 \bibitem{abc}
51 J. Author, {\em The title of the Article}, Name of the Journal. Volume
52 (YEAR), page(s).
53
54
55 \end{thebibliography}
56
57 \end{document}
58