This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.tex
108 lines (95 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
\documentclass[12pt,a4paper,pdftex,twoside,liststotoc,listsleft]{scrartcl}
\newcommand{\myauthor}{Johannes Steger, Egon Stemle}
\newcommand{\mytitle}{Infrastructure for Construction and Annotation of Web Corpora}
%%%% package imports (order matters)
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{url}
\usepackage{natbib}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tabularx}
\usepackage[pdftex]{color}
\usepackage[pdftex,frenchlinks=true,setpagesize=false,colorlinks=false]{hyperref}
%%%% fancy & options
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\footrulewidth}{0.5pt}
\renewcommand{\headrulewidth}{0.5pt}
\setlength{\headheight}{20pt}
\setlength{\headsep}{20pt}
\fancyhf{}
\fancyfoot[CE]{KrdWrd}
\fancyfoot[CO]{\mytitle}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[RE]{\bfseries\leftmark }
\fancyhead[LO]{\bfseries\rightmark }
%%%% hyper & options
\definecolor{darkblue}{rgb}{0,0,0.66}
\definecolor{darkred}{rgb}{0.4,0,0}
\hypersetup{
pdftitle={\mytitle},
pdfauthor={\myauthor},
pdfsubject={\mytitle},
pdfproducer={pdflatex, inkscape, gnuplot},
plainpages=false,
frenchlinks=true,
pdfborder=0 0 0
%,
%linkcolor=darkblue,
%pagecolor=darkblue,
%urlcolor=darkblue,
%citecolor=darkred
}
%%%% indexing options
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\newcounter{lofdepth}
\setcounter{lofdepth}{3}
\bibliographystyle{plainnat}
%%%% new commands
\newcommand{\email}[1]{\href{mailto:#1}{#1}}
\newcommand{\fig}[4]
{
\begin{figure}[h]
\centering
\includegraphics[width=#1\textwidth]{./images/#2}
\caption{#3}
\label{#4}
\end{figure}
}
%%%% typesetting options
\unitlength10mm
%%%% Title
\title{\mytitle}
\subject{
\includegraphics[width=0.1\textwidth]{./images/uos.pdf}\\
University of Osnabr\"uck \\
Institute of Cognitive Science \\
Germany}
\date{\today}
\author{\myauthor}
\publishers{\bigskip \small
A KrdWrd Report.
}
%%%% Doc begins
\begin{document}
\maketitle
\begin{abstract}
The Abstract.
\end{abstract}
\newpage
\tableofcontents
\section{Introduction}
\section{Acquisition}
\fig{1.0}{corpflow.pdf}{fig:corpflow}{Details}
\section{Annotation}
\section{Learning}
\fig{1.0}{vectflow.pdf}{fig:vectflow}{Details}
%%%%%%%%%%%%%%% APPENDIX %%%%%%%%%%%%%%%%%%%%%%%%
\appendix
\clearpage
\bibliography{report}
%\listoftables
%\listoffigures
\end{document}