-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
81 lines (58 loc) · 1.96 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
%!TEX program = pdflatex
%!TEX options=--shell-escape
\documentclass{uofg-basic-article}
% Count tables as text (remove if tables should not count towards the word count)
%TC:group table 0 1
%TC:group tabular 1 1
%--------------------
% Additional Packages
% -------------------
\usepackage[protrusion=true,expansion=true]{microtype} % Improves typography, load after fontpackage is selected
% Used for inserting dummy 'Lorem ipsum' text into the template
\usepackage{lipsum}
% Uncomment if sans-serif font should be used
%\renewcommand{\familydefault}{\sfdefault}
% Uncomment to remove numbering
%\setcounter{secnumdepth}{0}
%%% Do not remove
\usepackage[protrusion=true,expansion=true]{microtype} % improve typography
\usepackage{anyfontsize} % allow any size of font
%%%
%-----------------------
% Set metadata
%-----------------------
\title{The Title} % the title of the work
\author{Your Name | Your Student ID} % your name and/or your Student ID. DO NOT add your name when producing and anonymously marked assignment!
\date{00 Month 0000} % the date
\course{The Course} % the name of the course this work is for
\filename{main} % change this if the name of this file is not "main.tex"
\hypersetup{
pdfsubject = {\@title},
pdftitle = {\@title},
pdfauthor = {\@author}
}
%-----------------------
% Begin document
%-----------------------
\begin{document}
\maketitle
%% ABSTRACT
\begin{abstract}
Your Abstract.
\end{abstract}
%% TABLE OF CONTENTS
\tableofcontents
% reset page numbering. Don't remove this!
\pagenumbering{arabic}
\section{Introduction}
\lipsum[1-3]
\subsection*{Subtitle}
\lipsum[4-5]
% BIBLIOGRAPHY
% The bibliography style is bathx (Harvard as interpreted by the Universtity of Bath)
% The bibliography always appears last, after the appendices.
\bibliographystyle{bathx}
% (uncomment only if changing document class to report) Force the bibliography not to be numbered
% \renewcommand{\thechapter}{0}
\bibliography{main}
\end{document}