-
Notifications
You must be signed in to change notification settings - Fork 2
/
manual.tex
146 lines (127 loc) · 2.95 KB
/
manual.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
\documentclass[%
a4paper,% % DIN A4
oneside,% % einseitiger Druck
12pt,% % 12pt Schriftgröße
]{article}
\usepackage[utf8]{inputenc}
% include required packages
\usepackage{url}
\usepackage{array}
\usepackage{color}
\usepackage{listings}
\usepackage{xspace}
\usepackage{tabularx}
\usepackage{hyperref}
\usepackage{multicol}
\usepackage{capt-of}
\usepackage{graphicx}
\usepackage{float}
% font setup
\usepackage{cmbright}
\usepackage{txfonts}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
% par. settings
\parindent 0pt
\parskip 8pt
\pretolerance=150
\tolerance=500
\emergencystretch=\maxdimen
\hbadness=10000
\pagenumbering{arabic}
\input{colors}
\input{newcommands}
\input{variables}
\title{\libtitle \libsubtitle}
\author{Dominik Charousset}
\date{\today}
% page setup
\setlength{\voffset}{-1in}
\setlength{\hoffset}{-0.75in}
\addtolength{\textwidth}{1.5in}
\addtolength{\textheight}{2in}
\setlength{\headheight}{15pt}
% include paragraphs in TOC
\setcounter{tocdepth}{3}
% more compact itemize
\newenvironment{itemize*}%
{\begin{itemize}%
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{0pt}}%
{\end{itemize}}
\begin{document}
\maketitle\thispagestyle{empty}
\pagestyle{empty}
\clearpage
\tableofcontents
\clearpage
\setcounter{page}{1}
\pagestyle{plain}
% new highlight for INI file syntax
\lstdefinelanguage{ini}{%
basicstyle=\ttfamily\footnotesize,%
% columns=fullflexible,%
morecomment=[s][\color{blue}]{[}{]},%
morecomment=[l]{;},%
morecomment=[s]{<}{>},%
morestring=[b]",%
morestring=[b]',%
commentstyle=\color{violet},%
morekeywords={},%
otherkeywords={=,false,true},%
keywordstyle=\color{blue},%
stringstyle=\color{darkgreen},%
}
% code listings setup
\lstset{%
language=C++,%
morekeywords={constexpr,nullptr,size_t,uint32_t,assert,override,final},%
basicstyle=\ttfamily\footnotesize,%
sensitive=true,%
keywordstyle=\color{blue},%
stringstyle=\color{darkgreen},%
commentstyle=\color{violet},%
showstringspaces=false,%
tabsize=2,%
frame=leftline,
rulecolor=\color{lightblue},
xleftmargin=20pt,
}
\lstset{
numberstyle=\tiny,
numbers=left,
numbersep=10pt,
xleftmargin=20pt,
%framesep=4.5mm,
%framexleftmargin=2.5mm,
framexleftmargin=5pt,
framesep=15pt,
fillcolor=\color{lightgrey},
}
% content
\part{Core Library}
\include{Introduction}
\include{FirstSteps}
\include{TypeInspection}
\include{MessageHandlers}
\include{Actors}
\include{MessagePassing}
\include{Scheduler}
\include{Registry}
\include{ReferenceCounting}
\include{Error}
\include{ConfiguringActorApplications}
\include{Messages}
\include{GroupCommunication}
\include{ManagingGroupsOfWorkers}
\part{I/O Library}
\include{NetworkTransparency}
\include{Brokers}
\include{RemoteSpawn}
\part{Appendix}
\include{FAQ}
\include{Utility}
\include{CommonPitfalls}
\include{UsingAout}
\include{MigrationGuides}
\end{document}