1% Preambel
2\documentclass[a4paper,openany]{report}
3
4
5%\usepackage{a4wide}
6\usepackage[ansinew]{inputenc}
7\usepackage[T1]{fontenc}
8\RequirePackage{ifpdf}
9
10\usepackage{hyperref}
11	\hypersetup{%
12  colorlinks=true,   % activates colored references
13  pdfpagemode=None,  % PDF-Viewer starts without content et.al.
14  pdfstartview=FitH, % PDF-Viewer uses a defined page width
15  %linkbordercolor=111,
16  % citebordercolor=111,
17  citecolor=blue,
18  linkcolor=blue}
19
20\ifpdf
21  \usepackage[pdftex]{graphicx}
22	  \DeclareGraphicsExtensions{.pdf}
23\else
24  \usepackage[dvips]{graphicx}
25	  \DeclareGraphicsExtensions{.eps}
26\fi
27
28%\usepackage{asymptote}
29\usepackage{fancyhdr}
30%\usepackage{supertabular}
31\usepackage{booktabs}
32%\usepackage{longtable}
33%\usepackage[dvips]{rotating}
34\usepackage{multirow}
35\usepackage{multicol}
36
37\usepackage{color}
38\usepackage{amsmath}
39\usepackage{alltt}
40%\usepackage{array}
41%\usepackage{colortbl}
42
43%%%%%%%%%%%%%%%% will be used to defined a color scheme for
44%%%%%%%%%%%%%%%% latex pages converted with "Highlight"
45\newcommand{\hlstd}[1]{\textcolor[rgb]{0,0,0}{#1}}
46\newcommand{\hlnum}[1]{\textcolor[rgb]{0.75,0,0.35}{#1}}
47\newcommand{\hlesc}[1]{\textcolor[rgb]{0.42,0.35,0.8}{#1}}
48\newcommand{\hlstr}[1]{\textcolor[rgb]{0.75,0,0.35}{#1}}
49\newcommand{\hldstr}[1]{\textcolor[rgb]{0.75,0,0.35}{#1}}
50\newcommand{\hlslc}[1]{\textcolor[rgb]{0.25,0.38,0.56}{#1}}
51\newcommand{\hlcom}[1]{\textcolor[rgb]{0.25,0.38,0.56}{#1}}
52\newcommand{\hldir}[1]{\textcolor[rgb]{0.8,0,0.8}{#1}}
53\newcommand{\hlsym}[1]{\textcolor[rgb]{0,0,0}{#1}}
54\newcommand{\hlline}[1]{\textcolor[rgb]{0.25,0.38,0.56}{#1}}
55\newcommand{\hlkwa}[1]{\textcolor[rgb]{0.65,0.16,0.16}{\bf{#1}}}
56\newcommand{\hlkwb}[1]{\textcolor[rgb]{0.18,0.55,0.34}{\bf{#1}}}
57\newcommand{\hlkwc}[1]{\textcolor[rgb]{0.15,0.37,0.93}{\bf{#1}}}
58\newcommand{\hlkwd}[1]{\textcolor[rgb]{0.32,0.11,0.78}{#1}}
59\definecolor{bgcolor}{rgb}{1,0.85,0.73}
60\oddsidemargin -3mm
61\textwidth 165,2truemm
62\topmargin 0truept
63\headheight 0truept
64\headsep 0truept
65\textheight 230truemm
66%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
67
68\clubpenalty = 10000
69\widowpenalty = 10000 \displaywidowpenalty = 10000
70
71\definecolor{hellgrau}{gray}{0.95}
72\definecolor{dunkelgrau}{gray}{0.55}
73
74\definecolor{brown}{rgb}{0.75,0.004,0.3}
75
76
77\renewcommand{\headrulewidth}{0pt} % no head rule
78\renewcommand{\footrulewidth}{0pt} % no footer rule
79
80%\nointend
81%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82% start text here!!
83
84
85\begin{document}
86\pagenumbering{roman}
87\input{title2}
88
89\tableofcontents
90\pagenumbering{arabic}
91
92\include{introduction}
93\include{octave/neuroPackage/neuroPackage}
94\include{examples/examples}
95
96\include{bibliography}
97
98
99
100\end{document}
101
102
103