hans@900: \documentclass[12pt]{scrartcl} hans@900: hans@900: %---------------------------------------------- hans@900: % Load packages hans@900: hans@900: \usepackage{a4} hans@900: \usepackage{times} hans@900: \usepackage[latin1]{inputenc} hans@900: \usepackage{fancyhdr} hans@900: %\usepackage{german} hans@900: %\usepackage[marvosym]{eurofont} hans@900: %\usepackage[all, light]{draftcopy} hans@900: %\usepackage{supertabular} hans@900: %\usepackage{colortbl} hans@900: %\usepackage{epsf} hans@900: \usepackage{graphicx} hans@900: \usepackage{lastpage} hans@900: %\usepackage{proposal} hans@900: \usepackage{listings} hans@900: % FIXME hyperref config hans@900: hans@900: %---------------------------------------------- hans@900: % Document DATE and VERSION hans@900: % set these values when releasing a new version hans@900: hans@900: \newcommand{\documentdate}{April 27th, 2010} hans@900: \newcommand{\documentversion}{1.0} hans@900: \newcommand{\documentrevision}{FIXME SVN REV} hans@900: \newcommand{\documentID}{installation-admin-manual.tex} hans@900: %---------------------------------------------- hans@900: hans@900: %---------------------------------------------- hans@900: % Document TITLE hans@900: \newcommand{\documenttitle}{Generic Viewer -- Installing and running} hans@900: hans@900: hans@900: %---------------------------------------------- hans@900: % Some parameters for layouting hans@900: hans@900: \paperwidth=21cm hans@900: \hoffset=-0.54cm hans@900: \textwidth=17cm hans@900: hans@900: \paperheight=29.7cm hans@900: \voffset=-1.5cm hans@900: \topmargin=0cm hans@900: \headheight=1cm hans@900: \textheight=24cm hans@900: hans@900: \setcounter{secnumdepth}{4} hans@900: \setcounter{tocdepth}{4} hans@900: hans@900: %---------------------------------------------- hans@900: hans@900: \begin{document} hans@900: hans@900: \lstset{ % hans@900: language=sh, hans@900: basicstyle=\ttfamily, % the size of the fonts that are used for the code hans@900: numbers=left, % where to put the line-numbers hans@900: numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers hans@900: numbersep=5pt, % how far the line-numbers are from the code hans@900: % backgroundcolor=\color{white}, % choose the background color. You must add \usepackage{color} hans@900: showspaces=false, % show spaces adding particular underscores hans@900: showstringspaces=false, % underline spaces within strings hans@900: showtabs=false, % show tabs within strings adding particular underscores hans@900: frame=single, % adds a frame around the code hans@900: tabsize=2, % sets default tabsize to 2 spaces hans@900: captionpos=b, % sets the caption-position to bottom hans@900: breaklines=true, % sets automatic line breaking hans@900: breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace hans@900: title=\lstname, % show the filename of files included with \lstinputlisting; also try caption instead of title hans@900: escapeinside={\%*}{*)} % if you want to add a comment within your code hans@900: % morekeywords={*,...} % if you want to add more keywords to the set hans@900: } hans@900: hans@900: %----------------------------------- hans@900: % HEADER/FOOTER DEFINITION hans@900: hans@900: % for some pages latex switches back to pagestyle plain :-( hans@900: \fancypagestyle{plain}{% hans@900: \fancyhf{} % clear all header and footer fields hans@900: \fancyhead[LO,RE]{\footnotesize \documenttitle\\ \leftmark} hans@900: \fancyfoot[RO,LE]{\footnotesize Intevation GmbH} % Author hans@900: \fancyfoot[CO,CE]{\footnotesize \thepage/\pageref{LastPage}} hans@900: \fancyfoot[LO,RE]{\footnotesize \documentdate hans@900: \\\documentID} hans@900: \renewcommand{\footrulewidth}{0.4pt} hans@900: } hans@900: hans@900: % and now define pagestyle fancy hans@900: \fancyhead{} % clear all fields hans@900: \fancyhead[LO]{\footnotesize \documenttitle\\ \leftmark} hans@900: hans@900: \fancyfoot{}% clear all fields hans@900: \fancyfoot[RO]{\footnotesize Intevation GmbH} % Author hans@900: \fancyfoot[CO]{\footnotesize \thepage/\pageref{LastPage}} hans@900: \fancyfoot[LO]{\footnotesize \documentdate hans@900: \\\documentID} hans@900: hans@900: \renewcommand{\footrulewidth}{0.4pt} hans@900: hans@900: % hans@900: % END Header/Footer Definition hans@900: %----------------------------------- hans@900: hans@900: %---------------------------------------------- hans@900: % MACRO DEFINITION hans@900: % hans@900: % \Fig{figure}{lof text}{caption} : hans@900: % places 'figure' and hans@900: % writes 'caption' at the bottom with leading hans@900: % 'Abbildung figno:'. 'lof text' is added to the list of hans@900: % figures. hans@900: % Example: hans@900: % \Fig{\epsfxsize30mm \epsffile{x.eps}}{the x}{the x} hans@900: % hans@900: % \FigNoEntry{}{} : hans@900: % same as above, no entry in figures list hans@900: % hans@900: % \FigCaption{} : hans@900: % line with figure caption, setting figure hans@900: % counter and figures list hans@900: % hans@900: % \Tab{table}{lot text}{caption} : hans@900: % places 'table' and writes caption on top of the table hans@900: % with leading 'Tabelle tabno:'. 'lot text' is added to hans@900: % the list of tables. hans@900: %**************************************************************************** hans@900: % Figure makro for graphics continously enumerated. hans@900: % hans@900: hans@900: \newcounter{FigCnt} hans@900: \newcounter{TabCnt} hans@900: hans@900: \newcommand{\Fig}[3]% hans@900: { hans@900: \refstepcounter{FigCnt} hans@900: \addcontentsline{lof}{figure}% hans@900: {\protect\numberline{\arabic{FigCnt}}{#2}} hans@900: \mbox{#1} hans@900: hans@900: \nopagebreak hans@900: {Abbildung \arabic{FigCnt}: #3} hans@900: hans@900: } hans@900: hans@900: \newcommand{\FigNoEntry}[2]% hans@900: { hans@900: \refstepcounter{FigCnt} hans@900: \mbox{#1} hans@900: hans@900: \nopagebreak hans@900: {Abbildung \arabic{FigCnt}: #2} hans@900: hans@900: } hans@900: hans@900: \newcommand{\FigCaption}[1]% hans@900: { hans@900: \refstepcounter{FigCnt} hans@900: \addcontentsline{lof}{figure}% hans@900: {\protect\numberline{\arabic{FigCnt}}{#1}} hans@900: hans@900: %{Figure \thesection.\arabic{FigCnt}: #1} hans@900: } hans@900: hans@900: \newcommand{\Tab}[3]% hans@900: { hans@900: \refstepcounter{TabCnt} hans@900: \addcontentsline{lot}{figure}% hans@900: {\protect\numberline{\arabic{TabCnt}}{#2}} hans@900: {Tabelle \arabic{TabCnt}: #3} hans@900: \nopagebreak hans@900: #1 hans@900: hans@900: } hans@900: hans@900: \hyphenation{Intevation} hans@900: % end macro definition hans@900: hans@900: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% hans@900: hans@900: \newcounter{schritt} hans@900: \renewcommand{\theschritt}{\Roman{schritt}} hans@900: %\makeatletter\renewcommand{\p@schritt}{Abschnitt~\thesubsubsection~}\makeatother hans@900: hans@900: %----------------------------------- hans@900: % DOCUMENT SETTINGS hans@900: \pagestyle{fancy} hans@900: \setlength{\parindent}{0cm} hans@900: \setlength{\parskip}{5pt plus 2pt minus 1pt} hans@900: hans@900: % Start actual content here hans@900: \include{title} hans@900: \newpage hans@900: \tableofcontents hans@900: \include{overview} hans@900: \include{installation-base} hans@900: \include{installation-artefact-server} hans@900: \include{installation-webclient} hans@900: \include{operating-the-system} hans@900: hans@900: \end{document}