Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5a117f54b8e3890afdabd9f1372b4ff79782de60 (plain) (blame)
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
\documentclass[a4paper,oneside,10pt]{book}
\usepackage[english]{babel}
\usepackage[portrait,a4paper,margin=3.0cm,headsep=5mm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{longtable}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{hyperref}
\hypersetup{hidelinks}
\usepackage{array}
\usepackage{graphicx}
\usepackage[labelfont=bf,singlelinecheck=false,format=plain,,justification=justified,indention=0cm]{caption}

\usepackage{listings}

\input{roomlistings}

\setlength{\parindent}{0pt}  
\setlength{\parskip}{4pt plus 1pt minus 0pt}  % Abstand zwischen Absaetzen
 \nonfrenchspacing
 \sloppy

\newcommand{\specialcell}[2][c]{%
  \begin{tabular}[#1]{@{}c@{}}#2\end{tabular}}

% the robust command prevents premature macro expansion
% but the entry in the PDF structure is wrong (redblueTrice)
%\DeclareRobustCommand{\eTrice}{{\color{blue}e}{\color{red}Trice}{}}

% defining these colors fixes a problem with the plain newcommand
% but still the PDF structure entries are wrong (reblueTrice)
\definecolor{RED}{RGB}{255,0,0}
\definecolor{BLUE}{RGB}{0,0,255}
\newcommand{\eTrice}{{\color{blue}e}{\color{red}Trice}{}}

% the following command makes eTrice vanish completely from the PDF structure
%\usepackage{etoolbox}
%\newrobustcmd{\eTrice}{{\color{blue}e}{\color{red}Trice}{}}

\newcommand{\myparagraph}[1]{\paragraph{#1}\mbox{}\\}
%\newcommand{\room}[1]{\textcolor{RedViolet}{\texttt{#1}}}
\newcommand{\room}[1]{\textcolor{Fuchsia}{\textbf{#1}}}
\renewcommand{\familydefault}{\sfdefault}
 
\title{\Huge \eTrice}
\author{\eTrice{} committers and contributors}
\begin{document}

\maketitle

\tableofcontents

\chapter{Introduction}

%\input{000-etrice-introduction}
%\input{010-room-introduction}

\chapter{Tutorials}

%\input{012-working-with-tutorials}
\input{013-setting-up-the-workspace-for-java}
\input{014-setting-up-the-workspace-for-C}
%\input{015-hello-world-java}
%\input{016-hello-world-c}
%\input{020-tutorial-blinky}
%\input{025-tutorial-sending-data}
%\input{030-tutorial-ped-lights}
%\input{040-room-concepts}

\chapter{eTrice{} Features}

%\input{043-layout-with-kieler}

%*** BEGIN Not implemented yet
%\input{050-etrice-features}
%\input{060-codegenerators}
%\input{070-runtimes}
%*** END Not implemented yet

%\input{080-etrice-models}

\chapter{eTrice{} Tool Developer's Reference}

\input{200-dev-reference}

\end{document}

Back to the top