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