blob: 5e7975dceb6d77c6f3476ad0c1f03fd7d1a1d737 (
about) (
plain)
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
|
\documentclass[a4paper,12pt]{article}
\usepackage{mystyle}
\bibliography{references.bib}
% length: 2000 - 2500 words
\begin{document}
\input{title}
\tableofcontents
\pagebreak
% less than 100 words
\input{intro}
% Write a report critically assessing the approach New Zealand has
% taken to environmental impact assessment (EIA) to date. Your report
% should consider the purpose and principles of EIA and discuss to
% what extent EIA is incorporated within New Zealand’s
% environmental management arrangements.
% 1200 words
\input{main}
% 1200 words
\input{discussion}
% 200 words
\input{conclusion}
{\footnotesize{Approximate word count: 2900}}
\printbibliography[heading=bibnumbered]
\end{document}
|