diff options
author | David A. Madore <david+git@madore.org> | 2013-03-02 01:17:10 +0100 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2013-03-02 01:17:10 +0100 |
commit | 2ef12b2bc4d13a27b91b880dec120679fa64b56c (patch) | |
tree | 9249cc37f7e9fd872ff64c5a6d782dc77b8a45d9 | |
parent | b75e93e914e5a477fe6166d192949b6286325a14 (diff) | |
download | galois-2ef12b2bc4d13a27b91b880dec120679fa64b56c.tar.gz galois-2ef12b2bc4d13a27b91b880dec120679fa64b56c.tar.bz2 galois-2ef12b2bc4d13a27b91b880dec120679fa64b56c.zip |
Correction d'un bug dans les macros qui ne se manifestait pas.
(Confusion entre décimal et hexadécimal : le " sert en TeX à entrer
des nombres en hexa, mais \the les renvoie en décimal.)
-rw-r--r-- | config/macros.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/macros.tex b/config/macros.tex index de1c12b..bcdba47 100644 --- a/config/macros.tex +++ b/config/macros.tex @@ -128,7 +128,7 @@ \def\DeclareUnicodeMathSymbol#1#2#3#4{ \global\luatexUmathchardef#1= "\mathchar@type#2 - "\the\csname sym#3\endcsname + \the\csname sym#3\endcsname #4 } \makeatother @@ -180,11 +180,11 @@ \let\saveIPAMinchoFamily\um_symfont_tl \ExplSyntaxOff % Maintenant on peut définir les caractères eux-mêmes -\Umathcode`米="0"\the\csname sym\saveIPAMinchoFamily\endcsname"7C73 +\Umathcode`米="0 \the\csname sym\saveIPAMinchoFamily\endcsname"7C73 \DeclareUnicodeMathSymbol{\yone}{\mathord}{\saveIPAMinchoFamily}{"7C73} -\Umathcode`田="0"\the\csname sym\saveIPAMinchoFamily\endcsname"7530 +\Umathcode`田="0 \the\csname sym\saveIPAMinchoFamily\endcsname"7530 \DeclareUnicodeMathSymbol{\yoneDA}{\mathord}{\saveIPAMinchoFamily}{"7530} -\Umathcode`別="0"\the\csname sym\saveIPAMinchoFamily\endcsname"5225 +\Umathcode`別="0 \the\csname sym\saveIPAMinchoFamily\endcsname"5225 \DeclareUnicodeMathSymbol{\betsu}{\mathord}{\saveIPAMinchoFamily}{"5225} % Voir <URL: http://tex.stackexchange.com/questions/95304/spacing-changes-when-using-unicode-math-range-feature-why > |