-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.tex
63 lines (55 loc) · 1.71 KB
/
report.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
%====================================================================
% 10 MW LIGHT ROTOR REFERENCE TURBINE - MAIN DOCUMENT
%====================================================================
\documentclass[
paper=a4,
fontsize=11pt,
parskip=half, % vertical inter-paragraph spacing instead of indentation
DIV=12, % "stripes" for layout definition
BCOR=10mm, % binding correction
headings=normal,
appendixprefix=true, % Put "Appendix A" at the beginning...
open=any % New chapter may begin on any page
]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{epsfig}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
%\usepackage{draftwatermark}
%\SetWatermarkScale{2}
%\usepackage{siunitx}
\usepackage{url}
\urlstyle{sf}
\usepackage{rotating}
\usepackage[numbers,square]{natbib}
\bibliographystyle{unsrtnat}
\setcounter{page}{2} % Page one is added manually, start counting at 2.
\usepackage{scrpage2}
\pagestyle{scrheadings}
\manualmark
\graphicspath{{./figure/}}
\ifoot[DTU Wind Energy E-XXXX]{DTU Wind Energy E-XXXX}
% Counters
\usepackage{totcount}
\newtotcounter{citnum} % Citations
\def\oldbibitem{} \let\oldbibitem=\bibitem
\def\bibitem{\stepcounter{citnum}\oldbibitem}
\newtotcounter{fignum} % Figures
\def\oldfigure{} \let\oldfigure=\figure
\def\figure{\stepcounter{fignum}\oldfigure}
\newtotcounter{tablenum} % Tables
\def\oldtable{} \let\oldtable=\table
\def\table{\stepcounter{tablenum}\oldtable}
\regtotcounter{page} % Pages
\begin{document}
\include{frontpage}
% \include{foreword}
\tableofcontents
% \include{summary}
\include{description}
\include{test}
\include{bibliography}
\include{appendix}
% \include{acknowledgements}
\end{document}