forked from bootlin/training-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
230 lines (171 loc) · 6.73 KB
/
README
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
How to compile these materials
==============================
First, you may install the packages needed to compile the materials
(example on Ubuntu 22.04):
sudo apt install --no-install-recommends git-core inkscape \
texlive-latex-base texlive-latex-extra texlive-font-utils dia \
python3-pygments texlive-fonts-recommended \
texlive-fonts-extra make texlive-xetex texlive-extra-utils \
fonts-inconsolata fonts-liberation \
xfonts-scalable lmodern texlive-science texlive-plain-generic \
texlive-lang-french ghostscript
Then, run 'make help' to see what available targets are.
For example:
make full-linux-kernel-slides.pdf
make full-linux-kernel-labs.pdf
Compiling issues
================
* If the materials stop compiling after upgrading your distro,
you may have to run "make clean" to get the materials to
compile again.
Example case: https://tex.stackexchange.com/questions/352017/miktex-and-beamer-error-beamerendinputifotherversion
Labs formatting guidelines
==========================
* To create a new lab, the chapter must start with a 'subchapter'
command, as in:
\subchapter{Bootloader – U-Boot}{Objectives: Set up serial
communication, compile and install the X-Loader and U-Boot
bootloaders, use basic U-Boot commands, set up TFTP communication
with the development workstation.}
* You can use \section{} and \subsection{} to create sections in your
lab document.
* To add some fixed-sized font text (function names, file or
directory paths, commands) inside a paragraph of normal text, use
the \code macro as follows:
Blabla. Look in the \code{/usr/bin} directory. Blabla.
Note that the \code{} macro doesn't require escaping of $ or _
signs:
You can look for the \code{platform_device_register()} function in the
\code{$HOME/linux/blabla.c} file.
This macro *MUST* be used instead of {\tt }, because \code{}
provides proper line wrapping on dashes, slashes and so on, which
helps in keeping the line of text within the width of the page.
Note that this macro cannot be used in section titles or chapter
titles. In this case {\tt } needs to be used (and inside {\tt },
the _ or $ signs have to be escaped).
* To add some fixed-size font text as a complete paragraph, use the
'verbatim' environment:
In order to build the kernel run:
\begin{verbatim}
make blabla_defconfig
make
\end{verbatim}
Here as well, it does not require escaping of $ or _ signs.
* To add URLs, use the \url{https://foobar.com} macro. This will
create a clickable link in the resulting PDF file.
* If needed, you can locally reduce the size of a
\begin{verbatim}...\end{verbatim} environment by doing:
\small
\begin{verbatim}
...
\end{verbatim}
\normalsize
This must be used parsimoniously because changing the font size all
the time is not very pretty. But since the verbatim environment
does not do line wrapping, it may sometimes be necessary.
Note that in addition to \small, you can also use other sizes, see
https://en.wikibooks.org/wiki/LaTeX/Fonts#Built-in_sizes .
Slides formatting guidelines
============================
* A new training should start with a file containing the setup of the
various variables needed such as authors and a slide created using the
titleframe macro. This new file should be created in the common/ directory
with the name <training-name>-title.tex
* Every new chapter should be split in order to allow its possible use in
other trainings as well. Each new file should contain only one subsection
and should be named <training-name>-<section-name>-<subsection-name>.tex.
New sections should be in a separate file named
<training-name>-<section-name>-title.tex. All the aggregation would be done
by the Makefile
Syntax Highlighting
===================
The LaTeX package minted is included to have a nice syntax
highlighting and advanced code formatting features. It uses pygments
as backend, so in order to use it, one needs to install the
debian/Ubuntu package python-pygments.
A basic example for C code is:
\begin{minted}{c}
....
\end{minted}
Of course, it can take a lot of options that you can find in the
minted's documentation present at:
http://mirrors.ctan.org/macros/latex/contrib/minted/minted.pdf
Emacs usage in LaTeX
====================
Install the AUCTex package which contains an improved Emacs
environment for editing LaTeX documents:
sudo apt install auctex
In your ~/.emacs.el file, add the following lines:
(load "auctex.el" nil t t)
(require 'latex)
(add-to-list 'LaTeX-verbatim-macros-with-braces "code")
(add-to-list 'LaTeX-verbatim-macros-with-braces "url")
The important point here is that this tells Emacs to consider the
\code{} and \url{} macros as a verbatim macro, so that even if special
characters such as $, _ or % are not escaped inside these macros,
Emacs text colorization will not go crazy.
Nice keyboard shortcuts with AUCTex:
* C-c RET to insert a macro, or embed the selected text into a
macro. Very useful to quickly place a few words inside a \code{}
macro
* C-c C-e to insert an environment, such as verbatim, or embed the
selected text into such an environment.
Diagrams
========
The recommended program to do diagrams is Dia:
apt install dia
When saving a file, please make sure to unselect the "Compressed saved
files" option, so that the .dia files are raw XML files, and not
gzipped compressed files. Having raw XML files is much better for
version control, and will allow, to some extent, merging .dia diagrams
after conflicts.
The fonts to be used are "Latin Modern Sans" for normal text and
"Inconsolata" for the code/paths.
Here are some suggested color couples you can use for the border and
background of boxes and other elements. Using similar colors for all
diagrams will make our training documents much more coherent and nice
to look at.
* Blue boxes
borders: #5CACFF
background: #ADD8E6
* Yellowish boxes
borders: #D9CB2F
background: #FFF8A8
* Grey boxes
borders: #868686
background: #E5E5E5
* Brownish boxes
borders: #A34804
background: #FFD192
* Purple boxes
borders: #2F004A
background: #EFB9FF
* Green boxes
borders: #6A8954
background: #C5E387
* Red/pink boxes
borders: #CC1F1A
background: #FFACAC
If you want to easily add all these colors to Dia, add the following
fragment to ~/.dia/persistence (or replace the existing
role="color-menu" XML tag):
------------------8<-----------------8<-----------------------------
<dia:list role="color-menu">
<dia:attribute name="listvalue">
<dia:string>##5CACFF
#ADD8E6
#D9CB2F
#FFF8A8
#868686
#E5E5E5
#A34804
#FFD192
#2F004A
#EFB9FF
#6A8954
#C5E387
#CC1F1A
#FFACAC#</dia:string>
</dia:attribute>
</dia:list>
------------------8<-----------------8<-----------------------------