docs/diploma
annotate thesis/thesis.tex @ 167:74151e26ba6a
this is the correct message for the last commit
I really hate it when I check in too early or too much by accident!
Maybe I should add a confirmation there to prevent me from doing stupid things.
But now what I checked in with the last commit:
- titlepage became the real titlepage, specifying all important info
- cover became the real cover to be the very first page
- the previous cover became pretitle, and moved between the other two
- my confirmation that I wrote the thesis on my own moved to the appendix
- the abstract and keywords moved to the back of the pretitle
- the copyright information extended
- the market share table is in a temporary state! (Needs verification!)
- some cleanups
Ten small commits instead of this huge one with an afterwards added message
are what I intended ... now I am in a bad mood because of this mess :-(
author | meillo@marmaro.de |
---|---|
date | Fri, 19 Dec 2008 20:36:03 +0100 |
parents | 4ac06b7b9bdf |
children | fa086dbbdf10 |
rev | line source |
---|---|
meillo@8 | 1 % @file |
meillo@8 | 2 % @brief diploma thesis about masqmail |
meillo@8 | 3 % @author markus schnalke <meillo@marmaro.de> |
meillo@8 | 4 % @since 2008-09-16 |
meillo@8 | 5 |
meillo@54 | 6 \documentclass[a4paper,twoside,openright]{report} |
meillo@24 | 7 \usepackage{thesis} |
meillo@24 | 8 |
meillo@12 | 9 \title{diploma thesis about masqmail} |
meillo@12 | 10 \author{markus schnalke} |
meillo@12 | 11 \date{2008-09-16} |
meillo@8 | 12 |
meillo@8 | 13 \begin{document} |
meillo@56 | 14 \pagenumbering{roman} |
meillo@153 | 15 \pagestyle{empty} |
meillo@8 | 16 |
meillo@166 | 17 \include{tex/cover} |
meillo@166 | 18 \include{tex/pretitle} |
meillo@166 | 19 \include{tex/abstract} |
meillo@15 | 20 \include{tex/titlepage} |
meillo@15 | 21 \include{tex/dedication} |
meillo@56 | 22 |
meillo@8 | 23 \cleardoublepage |
meillo@153 | 24 \pagestyle{headings} |
meillo@8 | 25 \tableofcontents |
meillo@81 | 26 %\listoffigures |
meillo@81 | 27 %\listoftables |
meillo@56 | 28 |
meillo@26 | 29 \include{tex/0-preface} |
meillo@8 | 30 \setcounter{page}{0} |
meillo@8 | 31 \pagenumbering{arabic} |
meillo@8 | 32 |
meillo@26 | 33 \include{tex/1-Introduction} |
meillo@116 | 34 \include{tex/2-MarketAnalysis} |
meillo@116 | 35 \include{tex/3-MailTransferAgents} |
meillo@93 | 36 \include{tex/4-MasqmailsFuture} |
meillo@89 | 37 \include{tex/5-Improvements} |
meillo@89 | 38 \include{tex/6-Release} |
meillo@89 | 39 \include{tex/7-Summary} |
meillo@8 | 40 |
meillo@56 | 41 \cleardoublepage |
meillo@49 | 42 \setcounter{page}{0} |
meillo@49 | 43 \pagenumbering{alph} |
meillo@166 | 44 \appendix |
meillo@166 | 45 \addcontentsline{toc}{part}{APPENDIX} |
meillo@166 | 46 \part*{APPENDIX} |
meillo@166 | 47 \include{tex/official} |
meillo@8 | 48 |
meillo@56 | 49 % BIBLIOGRAPHY |
meillo@153 | 50 \pagestyle{plain} |
meillo@8 | 51 \addcontentsline{toc}{chapter}{Bibliography} |
meillo@39 | 52 \bibliographystyle{alpha} |
meillo@15 | 53 \bibliography{bib/thesis} |
meillo@54 | 54 \bibliographystyleweb{plain} |
meillo@54 | 55 \bibliographyweb{bib/websites} |
meillo@8 | 56 |
meillo@56 | 57 % INDEX |
meillo@54 | 58 \cleardoublepage |
meillo@8 | 59 \addcontentsline{toc}{chapter}{Index} |
meillo@8 | 60 \printindex |
meillo@56 | 61 |
meillo@8 | 62 \end{document} |
meillo@167 | 63 |