Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for "\={i}" to OT1 and T1 #1535

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions base/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ to completeness or accuracy and it contains some references to files that are
not part of the distribution.
================================================================================

2024-11-06 Joseph Wright <[email protected]>
* ltoutenc.dtx
Add support for \={i} to OT1 and T1

2024-11-05 Ulrike Fischer <[email protected]>
* ltproperties.dtx: add missing variants (gh/1532).

Expand Down
12 changes: 10 additions & 2 deletions base/ltoutenc.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
%<TS1>\ProvidesFile{ts1enc.def}[2001/06/05 v3.0e (jk/car/fm)
%<TU>\ProvidesFile{tuenc.def}
%<package>\ProvidesPackage{fontenc}
%<OT1|T1|OMS|OML|OT4|TU|package> [2021/04/29 v2.0v
%<OT1|T1|OMS|OML|OT4|TU|package> [2024/11/06 v2.1b
%<OT1|T1|OMS|OML|OT4|TS1|TU> Standard LaTeX file]
%<package> Standard LaTeX package]
%
%<*driver>
% \fi
\ProvidesFile{ltoutenc.dtx}
[2024/02/08 v2.1a LaTeX Kernel (font encodings)]
[2024/11/06 v2.1b LaTeX Kernel (font encodings)]
% \iffalse
\documentclass{ltxdoc}
\GetFileInfo{ltoutenc.dtx}
Expand Down Expand Up @@ -1827,13 +1827,15 @@
% T1, pr/3295}
% \changes{v1.94}{2001/06/05}{Text composite Commands need kludges for
% `,' -- see tlb1903.lvt}
% \changes{v2.1b}{2024/11/06}{Support for macron-i for OT1}
% \begin{macrocode}
\DeclareTextComposite{\.}{OT1}{i}{`\i}
\DeclareTextComposite{\.}{OT1}{\i}{`\i}
\DeclareTextCompositeCommand{\`}{OT1}{i}{\@tabacckludge`\i}
\DeclareTextCompositeCommand{\'}{OT1}{i}{\@tabacckludge'\i}
\DeclareTextCompositeCommand{\^}{OT1}{i}{\^\i}
\DeclareTextCompositeCommand{\"}{OT1}{i}{\"\i}
\DeclareTextCompositeCommand{\=}{OT1}{i}{\=\i}
% \end{macrocode}
%
% T1 encoding is given more extensive set of overloads for \verb|\c|
Expand Down Expand Up @@ -2277,6 +2279,12 @@
\fi
% \end{macrocode}
%
% \changes{v2.1b}{2024/11/06}{Support for macron-i for T1}
% One oddity.
% \begin{macrocode}
\DeclareTextCompositeCommand{\=}{T1}{\i}{\=\i}
% \end{macrocode}
%
% \begin{macrocode}
%</T1>
% \end{macrocode}
Expand Down