| 1 | %\documentclass[a4paper,10pt,draft,oneside,openbib,openright]{report} |
|---|
| 2 | \documentclass[a4paper,10pt,oneside,openright,openbib]{report} |
|---|
| 3 | |
|---|
| 4 | \usepackage[utf8]{inputenc} |
|---|
| 5 | \usepackage[american]{babel} |
|---|
| 6 | \usepackage[T1]{fontenc} |
|---|
| 7 | %\usepackage[dvips,pdftex]{graphicx} |
|---|
| 8 | % only for DRAFT purposes |
|---|
| 9 | \usepackage[dvips]{graphicx} |
|---|
| 10 | \usepackage{makeidx} |
|---|
| 11 | \usepackage{pst-all} |
|---|
| 12 | \usepackage{subfigure} |
|---|
| 13 | |
|---|
| 14 | \usepackage{ulem} |
|---|
| 15 | |
|---|
| 16 | \usepackage{lastpage} |
|---|
| 17 | \usepackage{verbatim} |
|---|
| 18 | \usepackage{multirow} |
|---|
| 19 | \usepackage{tikz} |
|---|
| 20 | \usepackage{wrapfig} |
|---|
| 21 | \usepackage[nonumberlist, toc, section]{glossaries} |
|---|
| 22 | \usepackage{listings} |
|---|
| 23 | \usepackage{multicol} |
|---|
| 24 | |
|---|
| 25 | \usepackage[light]{draftcopy} |
|---|
| 26 | %\usepackage[dvips,pdftex]{hyperref} |
|---|
| 27 | % |
|---|
| 28 | \usepackage{hyperref} |
|---|
| 29 | \hypersetup{colorlinks, |
|---|
| 30 | citecolor=black, |
|---|
| 31 | filecolor=black, |
|---|
| 32 | linkcolor=black, |
|---|
| 33 | urlcolor=black, |
|---|
| 34 | bookmarksopen=true, |
|---|
| 35 | % pdftex} |
|---|
| 36 | } |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | \author{ |
|---|
| 40 | %Armin Bauer <abauer@>\\ % TODO: ask for permission |
|---|
| 41 | Daniel Gollub <dgollub@suse.de>\\ |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | \title{\huge{OpenSync}\\\large{A Synchronization Framework}} |
|---|
| 45 | |
|---|
| 46 | \date{\today} |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | \begin{document} |
|---|
| 50 | |
|---|
| 51 | |
|---|
| 52 | \maketitle |
|---|
| 53 | |
|---|
| 54 | \begin{quote} |
|---|
| 55 | Copyright \copyright{} 2008 Daniel Gollub. |
|---|
| 56 | Permission is granted to copy, distribute and/or modify this document |
|---|
| 57 | under the terms of the GNU Free Documentation License, Version 1.2 |
|---|
| 58 | or any later version published by the Free Software Foundation; |
|---|
| 59 | with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. |
|---|
| 60 | A copy of the license is included in the section entitled ``GNU |
|---|
| 61 | Free Documentation License''. |
|---|
| 62 | \end{quote} |
|---|
| 63 | |
|---|
| 64 | \vfill |
|---|
| 65 | \begin{center} |
|---|
| 66 | (This page is \textbf{not} kept intentionally blank.) |
|---|
| 67 | \end{center} |
|---|
| 68 | \vfill |
|---|
| 69 | |
|---|
| 70 | \tableofcontents |
|---|
| 71 | |
|---|
| 72 | \newpage |
|---|
| 73 | |
|---|
| 74 | %Abstract |
|---|
| 75 | \input{abstract.tex} |
|---|
| 76 | |
|---|
| 77 | %Introduction |
|---|
| 78 | \input{introduction.tex} |
|---|
| 79 | |
|---|
| 80 | %Synchronization |
|---|
| 81 | \input{synchronization.tex} |
|---|
| 82 | |
|---|
| 83 | %Framework Architecture |
|---|
| 84 | \input{architecture.tex} |
|---|
| 85 | |
|---|
| 86 | %Plugins |
|---|
| 87 | \input{plugins.tex} |
|---|
| 88 | |
|---|
| 89 | %Format Plugins |
|---|
| 90 | \input{formatplugins.tex} |
|---|
| 91 | |
|---|
| 92 | |
|---|
| 93 | %Environments |
|---|
| 94 | \input{environments.tex} |
|---|
| 95 | |
|---|
| 96 | |
|---|
| 97 | %Credits |
|---|
| 98 | \input{credits.tex} |
|---|
| 99 | |
|---|
| 100 | \appendix |
|---|
| 101 | |
|---|
| 102 | %Exampes |
|---|
| 103 | \input{examples.tex} |
|---|
| 104 | |
|---|
| 105 | %GNU FDL |
|---|
| 106 | \input{fdl.tex} |
|---|
| 107 | |
|---|
| 108 | \end{document} |
|---|