1: \documentclass[a4paper,12pt]{book}
2:
3:
4: \usepackage{a4wide}
5: \usepackage{amsmath,amsthm,amssymb}
6: \usepackage[latin1]{inputenc}
7: \usepackage{fancyhdr}
8: \usepackage{graphicx}
9: \usepackage{subfigure}
10: \usepackage{array}
11: \usepackage{hyperref}
12: %\usepackage{layout}
13: \usepackage[german,english]{babel}
14:
15: \input macros.tex
16: \input manet-macros.tex
17:
18: \def\figext{eps}
19:
20:
21: \def \chapswitch {
22:
23: \clearpage
24:
25: \thispagestyle{plain}
26: \cleardoublepage
27: \pagestyle{fancy}
28:
29: }
30:
31: \newcommand{\specialChapter}[1]{
32:
33: \cleardoublepage
34: \chapter*{{#1}}
35: \addcontentsline{toc}{chapter}{{#1}}
36: \markboth{{#1}}{{#1}}
37:
38: }
39:
40: \newcommand{\specialChapterSilent}[2]{
41:
42: \cleardoublepage
43: \specialChapterSilentLR{#1}{#2}
44: }
45:
46: \newcommand{\specialChapterSilentLR}[2]{
47:
48: \clearpage
49: \addcontentsline{toc}{chapter}{{#1}}
50: \chead[\fancyplain{}{\slshape {#1}} ]{\fancyplain{} {\slshape {#1}} }
51: \markboth{{#1}}{{#1}}
52:
53: {
54: \renewcommand{\cleardoublepage}{\clearpage}
55: #2
56: }
57:
58: }
59:
60:
61: \pagestyle{fancy}
62:
63: \addtolength{\headheight}{2.5pt}
64: \setlength{\voffset}{-16pt}
65: \addtolength{\textheight}{48pt}
66: \addtolength{\hoffset}{-3.5pt}
67:
68: \fancypagestyle{plain}{%
69: \lhead[]{}
70: \chead[]{}
71: \rhead[]{}
72: \fancyfoot{}
73: \cfoot{-- {\thepage} --}
74: \renewcommand{\headrulewidth}{0pt}
75: \renewcommand{\footrulewidth}{0pt}
76: }
77:
78: \lhead[ \slshape \thepage ]{ }
79: \chead[\fancyplain{}{\slshape \leftmark} ]{\fancyplain{} {\slshape \rightmark}}
80: \rhead[]{ \slshape \thepage }
81: \lfoot[]{}
82: \cfoot[]{}
83: \rfoot[]{}
84:
85: \renewcommand{\chaptermark}[1]{ \markboth{\chaptername~\thechapter.\ #1}{}}
86: \renewcommand{\sectionmark}[1]{ \markright{ \thesection\ #1}{}}
87:
88: \numberwithin{defn}{chapter}
89: \numberwithin{equation}{chapter}
90: %\renewcommand{\theequation}{\thesection.\arabic{equation}}
91:
92:
93:
94: %\pdfinfo {
95: % /Title (Statistical Analysis of Quality Measures for Mobile Ad Hoc Networks)
96: % /Author (Henning Bostelmann)
97: % /Subject (Master's Thesis)
98: %}
99:
100:
101: \begin{document}
102:
103: \DeclareGraphicsExtensions{.jpg,.pdf,.mps,.png}
104:
105: %\pdfoutline goto name{toc} count 0{Inhaltsverzeichnis}
106: %\pdfoutline goto name{notation} count 0{Notationskonventionen}
107: %\pdfoutline goto name{literatur} count 0{Literaturverzeichnis}
108:
109: \input titel.tex
110:
111: \thispagestyle{plain}
112: \cleardoublepage
113: \chead[\fancyplain{}{\slshape Contents} ]{\fancyplain{} {\slshape Contents} }
114:
115: %\pdfdest name{toc} xyz
116:
117: \tableofcontents
118:
119: \clearpage
120: %\layout
121:
122: \chead[\fancyplain{}{\slshape \leftmark} ]{\fancyplain{} {\slshape \rightmark}}
123:
124: \thispagestyle{plain}
125:
126:
127: \chapswitch
128:
129: \chapter{Introduction}
130:
131: \input introduction.tex
132:
133:
134: \chapswitch
135:
136: \chapter{Statistical Models for Ad Hoc Networks} \label{ModelChap}
137:
138: \input modelling.tex
139:
140:
141: \chapswitch
142: \chapter{The Connectivity of 1-dimensional Networks} \label{ConnectChap}
143:
144: \input manet1d.tex
145:
146:
147: \chapswitch
148: \chapter{Quality Measures} \label{QualityChap}
149:
150: \input{qparam_general.tex}
151:
152: \input {skyways.tex}
153:
154: \input {quantitative.tex}
155:
156:
157: \chapswitch
158: \chapter{Further Directions} \label{MiscChap}
159:
160:
161: \input varnode.tex
162:
163: \input summary.tex
164:
165:
166: \chapswitch
167: \appendix
168: \renewcommand{\chaptername}{Appendix}
169:
170: \chapter{Some Mathematical Machinery} \label{MathApp}
171:
172: \section{The standard simplex in higher dimensions} \label{SimplexApp}
173:
174: \input simplex.tex
175:
176: \section{The inclusion-exclusion formula} \label{IncExcApp}
177:
178: \input incexc.tex
179:
180: \section{Statistical limits} \label{LimitApp}
181:
182: \input statlim.tex
183:
184: \section{A summation lemma} \label{SummationApp}
185:
186: \input summation.tex
187:
188:
189: \chapswitch
190:
191: \chapter{Notes on a Series of Publications by P.~Santi et al.} \label{SantiApp}
192:
193: \input santiblough.tex
194:
195:
196: \backmatter
197:
198: %Index of Notation
199: \chapswitch
200:
201: \specialChapter{Index of Notation} \label{NotationApp}
202: \input notation.tex
203:
204: %List of References
205:
206: \renewcommand{\bibname}{References}
207:
208: \specialChapterSilent{References}{
209: \bibliographystyle{myalpha}
210: \bibliography{manet}
211: }
212:
213:
214:
215: %Lists of Tables and Figures - on two facing pages
216:
217: \specialChapterSilentLR{\listtablename}{\listoftables}
218: \specialChapterSilentLR{\listfigurename}{\listoffigures}
219:
220:
221: \input anhang.tex
222:
223: \end{document}