diff options
| author | Paul Eggert | 2024-12-23 13:55:59 -0800 |
|---|---|---|
| committer | Paul Eggert | 2024-12-26 16:29:02 -0800 |
| commit | cf5e58a14dedabd65dee297ee2a2abb05cd4449d (patch) | |
| tree | 0774997184ada06fafff9e9a0033215d3eb725b4 /doc | |
| parent | 85ca91ff912da7c3a672e4bfe6ce103a23ddec73 (diff) | |
| download | emacs-cf5e58a14dedabd65dee297ee2a2abb05cd4449d.tar.gz emacs-cf5e58a14dedabd65dee297ee2a2abb05cd4449d.zip | |
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/texinfo.tex | 114 |
1 files changed, 74 insertions, 40 deletions
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex index 93d592193a0..456696f4c9e 100644 --- a/doc/misc/texinfo.tex +++ b/doc/misc/texinfo.tex | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | % Load plain if necessary, i.e., if running under initex. | 3 | % Load plain if necessary, i.e., if running under initex. |
| 4 | \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi | 4 | \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi |
| 5 | % | 5 | % |
| 6 | \def\texinfoversion{2024-02-10.22} | 6 | \def\texinfoversion{2024-11-04.20} |
| 7 | % | 7 | % |
| 8 | % Copyright 1985, 1986, 1988, 1990-2024 Free Software Foundation, Inc. | 8 | % Copyright 1985, 1986, 1988, 1990-2024 Free Software Foundation, Inc. |
| 9 | % | 9 | % |
| @@ -951,7 +951,11 @@ where each line of input produces a line of output.} | |||
| 951 | \let\setfilename=\comment | 951 | \let\setfilename=\comment |
| 952 | 952 | ||
| 953 | % @bye. | 953 | % @bye. |
| 954 | \outer\def\bye{\chappager\pagelabels\tracingstats=1\ptexend} | 954 | \outer\def\bye{% |
| 955 | \chappager\pagelabels | ||
| 956 | % possibly set in \printindex | ||
| 957 | \ifx\byeerror\relax\else\errmessage{\byeerror}\fi | ||
| 958 | \tracingstats=1\ptexend} | ||
| 955 | 959 | ||
| 956 | 960 | ||
| 957 | \message{pdf,} | 961 | \message{pdf,} |
| @@ -3126,11 +3130,12 @@ end | |||
| 3126 | % at the end of the line, or no break at all here. | 3130 | % at the end of the line, or no break at all here. |
| 3127 | % Changing the value of the penalty and/or the amount of stretch affects how | 3131 | % Changing the value of the penalty and/or the amount of stretch affects how |
| 3128 | % preferable one choice is over the other. | 3132 | % preferable one choice is over the other. |
| 3133 | % Check test cases in doc/texinfo-tex-test.texi before making any changes. | ||
| 3129 | \def\urefallowbreak{% | 3134 | \def\urefallowbreak{% |
| 3130 | \penalty0\relax | 3135 | \penalty0\relax |
| 3131 | \hskip 0pt plus 2 em\relax | 3136 | \hskip 0pt plus 3 em\relax |
| 3132 | \penalty1000\relax | 3137 | \penalty1000\relax |
| 3133 | \hskip 0pt plus -2 em\relax | 3138 | \hskip 0pt plus -3 em\relax |
| 3134 | } | 3139 | } |
| 3135 | 3140 | ||
| 3136 | \urefbreakstyle after | 3141 | \urefbreakstyle after |
| @@ -5438,6 +5443,9 @@ $$% | |||
| 5438 | \closein 1 | 5443 | \closein 1 |
| 5439 | \endgroup} | 5444 | \endgroup} |
| 5440 | 5445 | ||
| 5446 | % Checked in @bye | ||
| 5447 | \let\byeerror\relax | ||
| 5448 | |||
| 5441 | % If the index file starts with a backslash, forgo reading the index | 5449 | % If the index file starts with a backslash, forgo reading the index |
| 5442 | % file altogether. If somebody upgrades texinfo.tex they may still have | 5450 | % file altogether. If somebody upgrades texinfo.tex they may still have |
| 5443 | % old index files using \ as the escape character. Reading this would | 5451 | % old index files using \ as the escape character. Reading this would |
| @@ -5446,7 +5454,9 @@ $$% | |||
| 5446 | \ifflagclear{txiindexescapeisbackslash}{% | 5454 | \ifflagclear{txiindexescapeisbackslash}{% |
| 5447 | \uccode`\~=`\\ \uppercase{\if\noexpand~}\noexpand#1 | 5455 | \uccode`\~=`\\ \uppercase{\if\noexpand~}\noexpand#1 |
| 5448 | \ifflagclear{txiskipindexfileswithbackslash}{% | 5456 | \ifflagclear{txiskipindexfileswithbackslash}{% |
| 5449 | \errmessage{% | 5457 | % Delay the error message until the very end to give a chance |
| 5458 | % for the whole index to be output as input for texindex. | ||
| 5459 | \global\def\byeerror{% | ||
| 5450 | ERROR: A sorted index file in an obsolete format was skipped. | 5460 | ERROR: A sorted index file in an obsolete format was skipped. |
| 5451 | To fix this problem, please upgrade your version of 'texi2dvi' | 5461 | To fix this problem, please upgrade your version of 'texi2dvi' |
| 5452 | or 'texi2pdf' to that at <https://ftp.gnu.org/gnu/texinfo>. | 5462 | or 'texi2pdf' to that at <https://ftp.gnu.org/gnu/texinfo>. |
| @@ -5567,7 +5577,7 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 5567 | % \entry typesets a paragraph consisting of the text (#1), dot leaders, and | 5577 | % \entry typesets a paragraph consisting of the text (#1), dot leaders, and |
| 5568 | % then page number (#2) flushed to the right margin. It is used for index | 5578 | % then page number (#2) flushed to the right margin. It is used for index |
| 5569 | % and table of contents entries. The paragraph is indented by \leftskip. | 5579 | % and table of contents entries. The paragraph is indented by \leftskip. |
| 5570 | % | 5580 | % If \tocnodetarget is set, link text to the referenced node. |
| 5571 | \def\entry{% | 5581 | \def\entry{% |
| 5572 | \begingroup | 5582 | \begingroup |
| 5573 | % | 5583 | % |
| @@ -5608,7 +5618,13 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 5608 | \global\setbox\boxA=\hbox\bgroup | 5618 | \global\setbox\boxA=\hbox\bgroup |
| 5609 | \ifpdforxetex | 5619 | \ifpdforxetex |
| 5610 | \iflinkentrytext | 5620 | \iflinkentrytext |
| 5611 | \pdflinkpage{#1}{\unhbox\boxA}% | 5621 | \ifx\tocnodetarget\empty |
| 5622 | \unhbox\boxA | ||
| 5623 | \else | ||
| 5624 | \startxreflink{\tocnodetarget}{}% | ||
| 5625 | \unhbox\boxA | ||
| 5626 | \endlink | ||
| 5627 | \fi | ||
| 5612 | \else | 5628 | \else |
| 5613 | \unhbox\boxA | 5629 | \unhbox\boxA |
| 5614 | \fi | 5630 | \fi |
| @@ -5625,11 +5641,18 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 5625 | % | 5641 | % |
| 5626 | \null\nobreak\indexdotfill % Have leaders before the page number. | 5642 | \null\nobreak\indexdotfill % Have leaders before the page number. |
| 5627 | % | 5643 | % |
| 5644 | \hskip\skip\thinshrinkable | ||
| 5628 | \ifpdforxetex | 5645 | \ifpdforxetex |
| 5629 | \pdfgettoks#1.% | 5646 | \ifx\tocnodetarget\empty |
| 5630 | \hskip\skip\thinshrinkable\the\toksA | 5647 | \pdfgettoks#1.% |
| 5648 | \the\toksA | ||
| 5649 | \else | ||
| 5650 | % Should just be a single page number in toc | ||
| 5651 | \startxreflink{\tocnodetarget}{}% | ||
| 5652 | #1\endlink | ||
| 5653 | \fi | ||
| 5631 | \else | 5654 | \else |
| 5632 | \hskip\skip\thinshrinkable #1% | 5655 | #1% |
| 5633 | \fi | 5656 | \fi |
| 5634 | \fi | 5657 | \fi |
| 5635 | \egroup % end \boxA | 5658 | \egroup % end \boxA |
| @@ -6892,7 +6915,7 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 6892 | \vskip 0pt plus 5\baselineskip | 6915 | \vskip 0pt plus 5\baselineskip |
| 6893 | \penalty-300 | 6916 | \penalty-300 |
| 6894 | \vskip 0pt plus -5\baselineskip | 6917 | \vskip 0pt plus -5\baselineskip |
| 6895 | \dochapentry{#1}{\numeralbox}{}% | 6918 | \dochapentry{#1}{\numeralbox}{#3}{}% |
| 6896 | } | 6919 | } |
| 6897 | % | 6920 | % |
| 6898 | % Parts, in the short toc. | 6921 | % Parts, in the short toc. |
| @@ -6905,12 +6928,12 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 6905 | % Chapters, in the main contents. | 6928 | % Chapters, in the main contents. |
| 6906 | \def\numchapentry#1#2#3#4{% | 6929 | \def\numchapentry#1#2#3#4{% |
| 6907 | \retrievesecnowidth\secnowidthchap{#2}% | 6930 | \retrievesecnowidth\secnowidthchap{#2}% |
| 6908 | \dochapentry{#1}{#2}{#4}% | 6931 | \dochapentry{#1}{#2}{#3}{#4}% |
| 6909 | } | 6932 | } |
| 6910 | 6933 | ||
| 6911 | % Chapters, in the short toc. | 6934 | % Chapters, in the short toc. |
| 6912 | \def\shortchapentry#1#2#3#4{% | 6935 | \def\shortchapentry#1#2#3#4{% |
| 6913 | \tocentry{#1}{\shortchaplabel{#2}}{#4}% | 6936 | \tocentry{#1}{\shortchaplabel{#2}}{#3}{#4}% |
| 6914 | } | 6937 | } |
| 6915 | 6938 | ||
| 6916 | % Appendices, in the main contents. | 6939 | % Appendices, in the main contents. |
| @@ -6923,79 +6946,77 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 6923 | % | 6946 | % |
| 6924 | \def\appentry#1#2#3#4{% | 6947 | \def\appentry#1#2#3#4{% |
| 6925 | \retrievesecnowidth\secnowidthchap{#2}% | 6948 | \retrievesecnowidth\secnowidthchap{#2}% |
| 6926 | \dochapentry{\appendixbox{#2}\hskip.7em#1}{}{#4}% | 6949 | \dochapentry{\appendixbox{#2}\hskip.7em#1}{}{#3}{#4}% |
| 6927 | } | 6950 | } |
| 6928 | 6951 | ||
| 6929 | % Unnumbered chapters. | 6952 | % Unnumbered chapters. |
| 6930 | \def\unnchapentry#1#2#3#4{\dochapentry{#1}{}{#4}} | 6953 | \def\unnchapentry#1#2#3#4{\dochapentry{#1}{}{#3}{#4}} |
| 6931 | \def\shortunnchapentry#1#2#3#4{\tocentry{#1}{}{#4}} | 6954 | \def\shortunnchapentry#1#2#3#4{\tocentry{#1}{}{#3}{#4}} |
| 6932 | 6955 | ||
| 6933 | % Sections. | 6956 | % Sections. |
| 6934 | \def\numsecentry#1#2#3#4{\dosecentry{#1}{#2}{#4}} | ||
| 6935 | |||
| 6936 | \def\numsecentry#1#2#3#4{% | 6957 | \def\numsecentry#1#2#3#4{% |
| 6937 | \retrievesecnowidth\secnowidthsec{#2}% | 6958 | \retrievesecnowidth\secnowidthsec{#2}% |
| 6938 | \dosecentry{#1}{#2}{#4}% | 6959 | \dosecentry{#1}{#2}{#3}{#4}% |
| 6939 | } | 6960 | } |
| 6940 | \let\appsecentry=\numsecentry | 6961 | \let\appsecentry=\numsecentry |
| 6941 | \def\unnsecentry#1#2#3#4{% | 6962 | \def\unnsecentry#1#2#3#4{% |
| 6942 | \retrievesecnowidth\secnowidthsec{#2}% | 6963 | \retrievesecnowidth\secnowidthsec{#2}% |
| 6943 | \dosecentry{#1}{}{#4}% | 6964 | \dosecentry{#1}{}{#3}{#4}% |
| 6944 | } | 6965 | } |
| 6945 | 6966 | ||
| 6946 | % Subsections. | 6967 | % Subsections. |
| 6947 | \def\numsubsecentry#1#2#3#4{% | 6968 | \def\numsubsecentry#1#2#3#4{% |
| 6948 | \retrievesecnowidth\secnowidthssec{#2}% | 6969 | \retrievesecnowidth\secnowidthssec{#2}% |
| 6949 | \dosubsecentry{#1}{#2}{#4}% | 6970 | \dosubsecentry{#1}{#2}{#3}{#4}% |
| 6950 | } | 6971 | } |
| 6951 | \let\appsubsecentry=\numsubsecentry | 6972 | \let\appsubsecentry=\numsubsecentry |
| 6952 | \def\unnsubsecentry#1#2#3#4{% | 6973 | \def\unnsubsecentry#1#2#3#4{% |
| 6953 | \retrievesecnowidth\secnowidthssec{#2}% | 6974 | \retrievesecnowidth\secnowidthssec{#2}% |
| 6954 | \dosubsecentry{#1}{}{#4}% | 6975 | \dosubsecentry{#1}{}{#3}{#4}% |
| 6955 | } | 6976 | } |
| 6956 | 6977 | ||
| 6957 | % And subsubsections. | 6978 | % And subsubsections. |
| 6958 | \def\numsubsubsecentry#1#2#3#4{\dosubsubsecentry{#1}{#2}{#4}} | 6979 | \def\numsubsubsecentry#1#2#3#4{\dosubsubsecentry{#1}{#2}{#3}{#4}} |
| 6959 | \let\appsubsubsecentry=\numsubsubsecentry | 6980 | \let\appsubsubsecentry=\numsubsubsecentry |
| 6960 | \def\unnsubsubsecentry#1#2#3#4{\dosubsubsecentry{#1}{}{#4}} | 6981 | \def\unnsubsubsecentry#1#2#3#4{\dosubsubsecentry{#1}{}{#3}{#4}} |
| 6961 | 6982 | ||
| 6962 | % This parameter controls the indentation of the various levels. | 6983 | % This parameter controls the indentation of the various levels. |
| 6963 | % Same as \defaultparindent. | 6984 | % Same as \defaultparindent. |
| 6964 | \newdimen\tocindent \tocindent = 15pt | 6985 | \newdimen\tocindent \tocindent = 15pt |
| 6965 | 6986 | ||
| 6966 | % Now for the actual typesetting. In all these, #1 is the text, #2 is | 6987 | % Now for the actual typesetting. In all these, #1 is the text, #2 is |
| 6967 | % a section number if present, and #3 is the page number. | 6988 | % a section number if present, #3 is the node, and #4 is the page number. |
| 6968 | % | 6989 | % |
| 6969 | % If the toc has to be broken over pages, we want it to be at chapters | 6990 | % If the toc has to be broken over pages, we want it to be at chapters |
| 6970 | % if at all possible; hence the \penalty. | 6991 | % if at all possible; hence the \penalty. |
| 6971 | \def\dochapentry#1#2#3{% | 6992 | \def\dochapentry#1#2#3#4{% |
| 6972 | \penalty-300 \vskip1\baselineskip plus.33\baselineskip minus.25\baselineskip | 6993 | \penalty-300 \vskip1\baselineskip plus.33\baselineskip minus.25\baselineskip |
| 6973 | \begingroup | 6994 | \begingroup |
| 6974 | % Move the page numbers slightly to the right | 6995 | % Move the page numbers slightly to the right |
| 6975 | \advance\entryrightmargin by -0.05em | 6996 | \advance\entryrightmargin by -0.05em |
| 6976 | \chapentryfonts | 6997 | \chapentryfonts |
| 6977 | \extrasecnoskip=0.4em % separate chapter number more | 6998 | \extrasecnoskip=0.4em % separate chapter number more |
| 6978 | \tocentry{#1}{#2}{#3}% | 6999 | \tocentry{#1}{#2}{#3}{#4}% |
| 6979 | \endgroup | 7000 | \endgroup |
| 6980 | \nobreak\vskip .25\baselineskip plus.1\baselineskip | 7001 | \nobreak\vskip .25\baselineskip plus.1\baselineskip |
| 6981 | } | 7002 | } |
| 6982 | 7003 | ||
| 6983 | \def\dosecentry#1#2#3{\begingroup | 7004 | \def\dosecentry#1#2#3#4{\begingroup |
| 6984 | \secnowidth=\secnowidthchap | 7005 | \secnowidth=\secnowidthchap |
| 6985 | \secentryfonts \leftskip=\tocindent | 7006 | \secentryfonts \leftskip=\tocindent |
| 6986 | \tocentry{#1}{#2}{#3}% | 7007 | \tocentry{#1}{#2}{#3}{#4}% |
| 6987 | \endgroup} | 7008 | \endgroup} |
| 6988 | 7009 | ||
| 6989 | \def\dosubsecentry#1#2#3{\begingroup | 7010 | \def\dosubsecentry#1#2#3#4{\begingroup |
| 6990 | \secnowidth=\secnowidthsec | 7011 | \secnowidth=\secnowidthsec |
| 6991 | \subsecentryfonts \leftskip=2\tocindent | 7012 | \subsecentryfonts \leftskip=2\tocindent |
| 6992 | \tocentry{#1}{#2}{#3}% | 7013 | \tocentry{#1}{#2}{#3}{#4}% |
| 6993 | \endgroup} | 7014 | \endgroup} |
| 6994 | 7015 | ||
| 6995 | \def\dosubsubsecentry#1#2#3{\begingroup | 7016 | \def\dosubsubsecentry#1#2#3#4{\begingroup |
| 6996 | \secnowidth=\secnowidthssec | 7017 | \secnowidth=\secnowidthssec |
| 6997 | \subsubsecentryfonts \leftskip=3\tocindent | 7018 | \subsubsecentryfonts \leftskip=3\tocindent |
| 6998 | \tocentry{#1}{#2}{#3}% | 7019 | \tocentry{#1}{#2}{#3}{#4}% |
| 6999 | \endgroup} | 7020 | \endgroup} |
| 7000 | 7021 | ||
| 7001 | % Used for the maximum width of a section number so we can align | 7022 | % Used for the maximum width of a section number so we can align |
| @@ -7005,12 +7026,15 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 7005 | \newdimen\extrasecnoskip | 7026 | \newdimen\extrasecnoskip |
| 7006 | \extrasecnoskip=0pt | 7027 | \extrasecnoskip=0pt |
| 7007 | 7028 | ||
| 7008 | % \tocentry{TITLE}{SEC NO}{PAGE} | 7029 | \let\tocnodetarget\empty |
| 7030 | |||
| 7031 | % \tocentry{TITLE}{SEC NO}{NODE}{PAGE} | ||
| 7009 | % | 7032 | % |
| 7010 | \def\tocentry#1#2#3{% | 7033 | \def\tocentry#1#2#3#4{% |
| 7034 | \def\tocnodetarget{#3}% | ||
| 7011 | \def\secno{#2}% | 7035 | \def\secno{#2}% |
| 7012 | \ifx\empty\secno | 7036 | \ifx\empty\secno |
| 7013 | \entry{#1}{#3}% | 7037 | \entry{#1}{#4}% |
| 7014 | \else | 7038 | \else |
| 7015 | \ifdim 0pt=\secnowidth | 7039 | \ifdim 0pt=\secnowidth |
| 7016 | \setbox0=\hbox{#2\hskip\labelspace\hskip\extrasecnoskip}% | 7040 | \setbox0=\hbox{#2\hskip\labelspace\hskip\extrasecnoskip}% |
| @@ -7021,7 +7045,7 @@ might help (with 'rm \jobname.?? \jobname.??s')% | |||
| 7021 | #2\hskip\labelspace\hskip\extrasecnoskip\hfill}% | 7045 | #2\hskip\labelspace\hskip\extrasecnoskip\hfill}% |
| 7022 | \fi | 7046 | \fi |
| 7023 | \entrycontskip=\wd0 | 7047 | \entrycontskip=\wd0 |
| 7024 | \entry{\box0 #1}{#3}% | 7048 | \entry{\box0 #1}{#4}% |
| 7025 | \fi | 7049 | \fi |
| 7026 | } | 7050 | } |
| 7027 | \newdimen\labelspace | 7051 | \newdimen\labelspace |
| @@ -10515,6 +10539,16 @@ directory should work if nowhere else does.} | |||
| 10515 | \catcode"#1=\other | 10539 | \catcode"#1=\other |
| 10516 | } | 10540 | } |
| 10517 | 10541 | ||
| 10542 | % Suppress ligature creation from adjacent characters. | ||
| 10543 | \ifx\luatexversion\thisisundefined | ||
| 10544 | \def\nolig{{}} | ||
| 10545 | \else | ||
| 10546 | % Braces do not suppress ligature creation in LuaTeX, e.g. in of{}fice | ||
| 10547 | % to suppress the "ff" ligature. Using a kern appears to be the only | ||
| 10548 | % workaround. | ||
| 10549 | \def\nolig{\kern0pt{}} | ||
| 10550 | \fi | ||
| 10551 | |||
| 10518 | % https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_M | 10552 | % https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_M |
| 10519 | % U+0000..U+007F = https://en.wikipedia.org/wiki/Basic_Latin_(Unicode_block) | 10553 | % U+0000..U+007F = https://en.wikipedia.org/wiki/Basic_Latin_(Unicode_block) |
| 10520 | % U+0080..U+00FF = https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block) | 10554 | % U+0080..U+00FF = https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block) |
| @@ -11132,8 +11166,8 @@ directory should work if nowhere else does.} | |||
| 11132 | % Punctuation | 11166 | % Punctuation |
| 11133 | \DeclareUnicodeCharacter{2013}{--}% | 11167 | \DeclareUnicodeCharacter{2013}{--}% |
| 11134 | \DeclareUnicodeCharacter{2014}{---}% | 11168 | \DeclareUnicodeCharacter{2014}{---}% |
| 11135 | \DeclareUnicodeCharacter{2018}{\quoteleft{}}% | 11169 | \DeclareUnicodeCharacter{2018}{\quoteleft\nolig}% |
| 11136 | \DeclareUnicodeCharacter{2019}{\quoteright{}}% | 11170 | \DeclareUnicodeCharacter{2019}{\quoteright\nolig}% |
| 11137 | \DeclareUnicodeCharacter{201A}{\quotesinglbase{}}% | 11171 | \DeclareUnicodeCharacter{201A}{\quotesinglbase{}}% |
| 11138 | \DeclareUnicodeCharacter{201C}{\quotedblleft{}}% | 11172 | \DeclareUnicodeCharacter{201C}{\quotedblleft{}}% |
| 11139 | \DeclareUnicodeCharacter{201D}{\quotedblright{}}% | 11173 | \DeclareUnicodeCharacter{201D}{\quotedblright{}}% |
| @@ -11168,7 +11202,7 @@ directory should work if nowhere else does.} | |||
| 11168 | \DeclareUnicodeCharacter{2287}{\ensuremath\supseteq}% | 11202 | \DeclareUnicodeCharacter{2287}{\ensuremath\supseteq}% |
| 11169 | % | 11203 | % |
| 11170 | \DeclareUnicodeCharacter{2016}{\ensuremath\Vert}% | 11204 | \DeclareUnicodeCharacter{2016}{\ensuremath\Vert}% |
| 11171 | \DeclareUnicodeCharacter{2032}{\ensuremath\prime}% | 11205 | \DeclareUnicodeCharacter{2032}{\ensuremath{^\prime}}% |
| 11172 | \DeclareUnicodeCharacter{210F}{\ensuremath\hbar}% | 11206 | \DeclareUnicodeCharacter{210F}{\ensuremath\hbar}% |
| 11173 | \DeclareUnicodeCharacter{2111}{\ensuremath\Im}% | 11207 | \DeclareUnicodeCharacter{2111}{\ensuremath\Im}% |
| 11174 | \DeclareUnicodeCharacter{2113}{\ensuremath\ell}% | 11208 | \DeclareUnicodeCharacter{2113}{\ensuremath\ell}% |