slides: expandtab/retab, fix typos, fix example code
This commit is contained in:
parent
0305c1dc0e
commit
f28d20f875
|
@ -197,7 +197,8 @@ xcb_intern_atom_cookie_t cookies[10];
|
||||||
|
|
||||||
/* Place requests for atoms as soon as possible */
|
/* Place requests for atoms as soon as possible */
|
||||||
for (int c = 0; c < 10; c++)
|
for (int c = 0; c < 10; c++)
|
||||||
xcb_intern_atom(connection, 0, strlen(names[c]), names[c]);
|
cookies[c] = xcb_intern_atom(connection, 0,
|
||||||
|
strlen(names[c]), names[c]);
|
||||||
|
|
||||||
/* Do other stuff here */
|
/* Do other stuff here */
|
||||||
load_configuration();
|
load_configuration();
|
||||||
|
@ -377,7 +378,7 @@ xcb_allow_events(conn, ReplayKeyboard, event->time);
|
||||||
\begin{slide}[method=direct]{Umlaute und Sonderzeichen}
|
\begin{slide}[method=direct]{Umlaute und Sonderzeichen}
|
||||||
\includegraphics[width=.5\textwidth]{xft.eps}
|
\includegraphics[width=.5\textwidth]{xft.eps}
|
||||||
\begin{list}{$\bullet$}{\itemsep=.1em}
|
\begin{list}{$\bullet$}{\itemsep=.1em}
|
||||||
\item Verschiedene APIs für Render von Text: X Core Fonts und xft
|
\item Verschiedene APIs fürs Rendern von Text: X Core Fonts und xft
|
||||||
\item xft = X FreeType, antialiased fonts, Pango, GTK
|
\item xft = X FreeType, antialiased fonts, Pango, GTK
|
||||||
\item Problem mit X Core Fonts: keine Sonderzeichen
|
\item Problem mit X Core Fonts: keine Sonderzeichen
|
||||||
\item …oder? \texttt{misc-fixed-*-iso10646}, also X Core Fonts mit Universal Character Set (= Unicode-Zeichen). Nicht 100\% vollständig
|
\item …oder? \texttt{misc-fixed-*-iso10646}, also X Core Fonts mit Universal Character Set (= Unicode-Zeichen). Nicht 100\% vollständig
|
||||||
|
|
Loading…
Reference in New Issue