comparison flys-backend/doc/documentation/de/importer-manual.tex @ 3661:3ea5e835ecce

Initial checkin of documentation of importer and shape importer. flys-backend/trunk@5264 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 24 Aug 2012 14:13:19 +0000
parents
children 9b08db037ee5
comparison
equal deleted inserted replaced
3660:976ead36192d 3661:3ea5e835ecce
1 \documentclass[12pt]{scrartcl}
2
3 %----------------------------------------------
4 % Load packages
5
6 \usepackage{a4}
7 \usepackage{times}
8 \usepackage[latin1]{inputenc}
9 \usepackage{fancyhdr}
10 %\usepackage{german}
11 %\usepackage[marvosym]{eurofont}
12 %\usepackage[all, light]{draftcopy}
13 %\usepackage{supertabular}
14 %\usepackage{colortbl}
15 %\usepackage{epsf}
16 \usepackage{graphicx}
17 \usepackage{lastpage}
18 %\usepackage{proposal}
19 \usepackage{listings}
20 \usepackage[hyperindex=true, bookmarks=true, breaklinks=true,
21 colorlinks=true, linkcolor=red,bookmarksopen]{hyperref}
22
23 %----------------------------------------------
24 % Document DATE and VERSION
25 % set these values when releasing a new version
26
27 \newcommand{\documentdate}{April 27th, 2010}
28 \newcommand{\documentversion}{1.0}
29 \newcommand{\documentrevision}{FIXME SVN REV}
30 \newcommand{\documentID}{installation-admin-manual.tex}
31 %----------------------------------------------
32
33 %----------------------------------------------
34 % Document TITLE
35 \newcommand{\documenttitle}{Generic Viewer -- Installation and Operations}
36
37 \newcommand{\todo}{\textcolor{red}{ TODO }}
38
39
40 %----------------------------------------------
41 % Some parameters for layouting
42
43 \paperwidth=21cm
44 \hoffset=-0.54cm
45 \textwidth=16cm
46
47 \paperheight=29.7cm
48 \voffset=-1.5cm
49 \topmargin=0cm
50 \headheight=1cm
51 \textheight=24cm
52
53 \setcounter{secnumdepth}{4}
54 \setcounter{tocdepth}{4}
55
56 %----------------------------------------------
57
58 \begin{document}
59
60 \lstset{ %
61 language=sh,
62 basicstyle=\ttfamily, % the size of the fonts that are used for the code
63 numbers=left, % where to put the line-numbers
64 numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers
65 numbersep=5pt, % how far the line-numbers are from the code
66 % backgroundcolor=\color{white}, % choose the background color. You must add \usepackage{color}
67 showspaces=false, % show spaces adding particular underscores
68 showstringspaces=false, % underline spaces within strings
69 showtabs=false, % show tabs within strings adding particular underscores
70 frame=single, % adds a frame around the code
71 tabsize=2, % sets default tabsize to 2 spaces
72 captionpos=b, % sets the caption-position to bottom
73 breaklines=true, % sets automatic line breaking
74 breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
75 title=\lstname, % show the filename of files included with \lstinputlisting; also try caption instead of title
76 escapeinside={\%*}{*)} % if you want to add a comment within your code
77 % morekeywords={*,...} % if you want to add more keywords to the set
78 }
79
80 %-----------------------------------
81 % HEADER/FOOTER DEFINITION
82
83 % for some pages latex switches back to pagestyle plain :-(
84 \fancypagestyle{plain}{%
85 \fancyhf{} % clear all header and footer fields
86 \fancyhead[LO,RE]{\footnotesize \documenttitle\\ \leftmark}
87 \fancyfoot[RO,LE]{\footnotesize Intevation GmbH} % Author
88 \fancyfoot[CO,CE]{\footnotesize \thepage/\pageref{LastPage}}
89 \fancyfoot[LO,RE]{\footnotesize \documentdate
90 \\\documentID}
91 \renewcommand{\footrulewidth}{0.4pt}
92 }
93
94 % and now define pagestyle fancy
95 \fancyhead{} % clear all fields
96 \fancyhead[LO]{\footnotesize \documenttitle\\ \leftmark}
97
98 \fancyfoot{}% clear all fields
99 \fancyfoot[RO]{\footnotesize Intevation GmbH} % Author
100 \fancyfoot[CO]{\footnotesize \thepage/\pageref{LastPage}}
101 \fancyfoot[LO]{\footnotesize \documentdate
102 \\\documentID}
103
104 \renewcommand{\footrulewidth}{0.4pt}
105
106 %
107 % END Header/Footer Definition
108 %-----------------------------------
109
110 %----------------------------------------------
111 % MACRO DEFINITION
112 %
113 % \Fig{figure}{lof text}{caption} :
114 % places 'figure' and
115 % writes 'caption' at the bottom with leading
116 % 'Abbildung figno:'. 'lof text' is added to the list of
117 % figures.
118 % Example:
119 % \Fig{\epsfxsize30mm \epsffile{x.eps}}{the x}{the x}
120 %
121 % \FigNoEntry{}{} :
122 % same as above, no entry in figures list
123 %
124 % \FigCaption{} :
125 % line with figure caption, setting figure
126 % counter and figures list
127 %
128 % \Tab{table}{lot text}{caption} :
129 % places 'table' and writes caption on top of the table
130 % with leading 'Tabelle tabno:'. 'lot text' is added to
131 % the list of tables.
132 %****************************************************************************
133 % Figure makro for graphics continously enumerated.
134 %
135
136 \newcounter{FigCnt}
137 \newcounter{TabCnt}
138
139 \newcommand{\Fig}[3]%
140 {
141 \refstepcounter{FigCnt}
142 \addcontentsline{lof}{figure}%
143 {\protect\numberline{\arabic{FigCnt}}{#2}}
144 \mbox{#1}
145
146 \nopagebreak
147 {Abbildung \arabic{FigCnt}: #3}
148
149 }
150
151 \newcommand{\FigNoEntry}[2]%
152 {
153 \refstepcounter{FigCnt}
154 \mbox{#1}
155
156 \nopagebreak
157 {Abbildung \arabic{FigCnt}: #2}
158
159 }
160
161 \newcommand{\FigCaption}[1]%
162 {
163 \refstepcounter{FigCnt}
164 \addcontentsline{lof}{figure}%
165 {\protect\numberline{\arabic{FigCnt}}{#1}}
166
167 %{Figure \thesection.\arabic{FigCnt}: #1}
168 }
169
170 \newcommand{\Tab}[3]%
171 {
172 \refstepcounter{TabCnt}
173 \addcontentsline{lot}{figure}%
174 {\protect\numberline{\arabic{TabCnt}}{#2}}
175 {Tabelle \arabic{TabCnt}: #3}
176 \nopagebreak
177 #1
178
179 }
180
181 \hyphenation{Intevation}
182 % end macro definition
183
184 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
185
186 \newcounter{schritt}
187 \renewcommand{\theschritt}{\Roman{schritt}}
188 %\makeatletter\renewcommand{\p@schritt}{Abschnitt~\thesubsubsection~}\makeatother
189
190 %-----------------------------------
191 % DOCUMENT SETTINGS
192 \pagestyle{fancy}
193 \setlength{\parindent}{0cm}
194 \setlength{\parskip}{5pt plus 2pt minus 1pt}
195
196 % Start actual content here
197 \include{title}
198 \newpage
199 \tableofcontents
200 \include{overview}
201 \include{importer-hydr-morph}
202 \include{importer-geodaesie}
203
204 \end{document}

http://dive4elements.wald.intevation.org