This repository has been archived by the owner on Jun 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ogsde-man.tex
151 lines (119 loc) · 4.83 KB
/
ogsde-man.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
\documentclass[11pt,twoside,a4paper]{book}
\usepackage[british]{babel} % use UK hyphenation, etc.
\usepackage[T1]{fontenc} % font printing stuff
\usepackage{ae,aecompl} % scalable, non-bitmap fonts
\usepackage[pdftex]{graphicx} % enables graphics for pdf-latex
\usepackage{color} % enables use of colour for text
\usepackage{subfig} % enables subfigures
\usepackage{amsmath} % the one and only AMS-Math
\usepackage{makeidx} % creating an index
\usepackage{wrapfig} % using floating figures
\usepackage{url}
\usepackage{hyperref} % hyper-references in document
\hypersetup{
pdfcreator={LaTeX2e},
plainpages=false, % For problems with page referencing
hypertexnames=false, % For handling subfigures correctly
pdfpagemode=UseNone, % Fit screen (or "`FullScreen"')
pdfstartview=Fit,
breaklinks=true, % Allow breaks in links
colorlinks=false % Don't change coloring of links
}
% ----------------------------------------------------------
% My own commands
% ----------------------------------------------------------
\newcommand{\mynote}[1]{\emph{\textbf{\textcolor{red}{#1}}}}
\newcommand{\ra}{$\rightarrow$}
\newcommand{\cmd}[1]{\texttt{#1}}
\newcommand{\ogs}{\emph{OpenGeoSys}}
\newcommand{\de}{\emph{DataExplorer}}
\newcommand{\ogsde}{\ogs{} \de{}}
\newcommand{\bstart}[1]{\noindent\textbf{#1} }
\newcommand{\degree}{\ensuremath{^\circ}}
% ----------------------------------------------------------
% Typography
% ----------------------------------------------------------
\nonfrenchspacing % grosser Abstand nach Satzende
\widowpenalty 10000 % Keine Hurenkinder
\displaywidowpenalty 10000 % Keine Hurenkinder (Formeln)
\clubpenalty 10000 % Keine Schusterjungen
% ----------------------------------------------------------
% Headers
% ----------------------------------------------------------
\usepackage{fancyhdr} % formating page headers
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhead{} \fancyfoot{}
\fancyhead[RE]{The OpenGeoSys Data Explorer Manual}
%\fancyhead[RE]{\nouppercase{\leftmark}}
\fancyhead[LO]{\nouppercase{\leftmark}}
\fancyhead[LE,RO]{\thepage}
% ----------------------------------------------------------
% Hyperref Options
% MUSS AM SCHLUSS DER PRAEAMBEL STEHEN!
% ----------------------------------------------------------
\usepackage{hyperref} % references and links within the document
\hypersetup{
pdftitle={OGS Data Explorer - User Manual},
pdfsubject={Manual},
pdfauthor={Karsten Rink},
pdfcreator={LaTeX2e},
plainpages=false, % For problems with page referencing
hypertexnames=false, % For handling subfigures correctly
bookmarks=true, % I want bookmarks
bookmarksnumbered=false, % Include the section numbers in the list
bookmarksopen=true, % In the list, display highest level only
bookmarksopenlevel=3, % Display three levels of bookmarks
pdfpagemode=UseNone, % Fit screen (or "`FullScreen"')
pdfstartview=Fit,
pdfborder=0, % I don't want those silly boxes
breaklinks=true, % Allow breaks in links
colorlinks=false % Don't change coloring of links
}
% ----------------------------------------------------------
% Document description
% ----------------------------------------------------------
\title{{\LARGE OpenGeoSys Data Explorer}\\[0.5em] Manual}
\author{Karsten Rink}
\graphicspath{{pics/}}
\setlength{\fboxsep}{0mm}
\linespread{1.10}
\makeindex
\hyphenation{know-ledge}
% ----------------------------------------------------------
% Start of document
% ----------------------------------------------------------
\begin{document}
\pagestyle{empty}
\maketitle
\newpage
\vspace*{12cm}
\begin{tabbing}
\hspace*{6cm}\=aa\kill
\begin{minipage}[t]{0.62\textwidth}
\noindent This manual has been compiled based on the \ogs Data Explorer 6 beta \\
(as of October 2013).\\
\\
This document as well as its sources are published under Creative Commons Attribution-Noncommercial-Share Alike 3.0 Un\-por\-ted License. For more information go to \url{http://creativecommons.org/licenses/by-nc-sa/3.0/}. \\
\\
\noindent Special thanks to Lars Bilke and Thomas Fischer and everyone else helping with the development of the software.
\end{minipage}
\> \\
\end{tabbing}
\newpage
\tableofcontents
\cleardoublepage
\pagestyle{fancy}
\include{ch01-introduction}
\include{ch02-workflow}
\include{ch03-funcindex}
\include{ch04-visualisation}
\include{ch05-workflows}
\appendix
\cleardoublepage
\addcontentsline{toc}{chapter}{Index}
\printindex
\cleardoublepage
\include{app-literature}
\cleardoublepage
\end{document}