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
|
%$Lamed
\documentclass{book}
\usepackage{bookman}
\usepackage[loadonly, charset = isolat1, french]{mem}
%\languageproperties{french}{uppercase = unaccented}
\tracingmacros2
\tracingcommands2
\def\MemGobble#1{}
\languageset*{french}
\begin{document}
%\tracingmacros2
%\tracingcommands2
%\ocptracelevel3
\nonstopmode
\tableofcontents
Merçi beaucoup, mon \tracingmacros2{} <<frère>> \textdagger.
Merçi beaucoup, mon «frère» \textdaggerdbl.
Merçi beaucoup, mon << frère >> \textsection.
Merçi beaucoup, mon « frère » \textdagger.
\chaptername
Vamos a tener ahora unas \textit{cuantas} pruebas más genéricas. Para
empezar m\'as. Por ejemplo, \MakeUppercase{para mayúsculas}.
¿Funcionan cosas como esta? Todavía no del todo, pero algunas como
las ``comillas'' parece que sí (incluso las ,,alemanas``).
{\itshape Note. For some reason, Aleph raises an error with
\verb|---?| in French, while with eOmega that worked fine. However
\verb|?---| (?---) seems to work. Aleph is messing up things in a
obscure way, because it is interpreting something like
\verb|\MemMoveOtherChar\$| as a \textsc{single} token. Quick fix:
write \verb|---\relax?|.}
Incluyamos una sección:
\begin{languageset}[uppercase = unaccented]{french}
\section{Una sección con <<\abstractname>> y con
\MakeUppercase{mayúsculas}}
\end{languageset}
Con ésto basta por ahora. Pasemos a algo más raro como \"x.
{\tracingmacros2
underdot: \d{t}.
underbar: \b{t} }
\newpage
Más páginas
\newpage
Y todavía más
\tracingmacros0
%\tracingcommands0
\end{document}
|