use sockets for math phantoms
This commit is contained in:
parent
cf0a3d4434
commit
7e000a0db1
@ -22,30 +22,34 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
\cs_set:Npn \mathph@nt #1 #2 {
|
\IfPackageAtLeastTF{latex-lab-testphase-text}{2025-01-27}
|
||||||
\setbox \z@ = \hbox {
|
{}
|
||||||
$
|
{
|
||||||
\m@th
|
\cs_set:Npn \mathph@nt #1 #2 {
|
||||||
#1
|
\setbox \z@ = \hbox {
|
||||||
{#2}
|
$
|
||||||
\luamml_save:nNn {mathphant} #1 {mphantom}
|
\m@th
|
||||||
$
|
#1
|
||||||
}
|
{#2}
|
||||||
\luamml_annotate:nen {1} {
|
\luamml_save:nNn {mathphant} #1 {mphantom}
|
||||||
nucleus = true,
|
$
|
||||||
core = {[0] = 'mpadded',
|
}
|
||||||
\ifh@\else
|
\luamml_annotate:nen {1} {
|
||||||
width = 0,
|
nucleus = true,
|
||||||
\fi
|
core = {[0] = 'mpadded',
|
||||||
\ifv@\else
|
\ifh@\else
|
||||||
height = 0, depth = 0,
|
width = 0,
|
||||||
\fi
|
\fi
|
||||||
consume_label'mathphant',
|
\ifv@\else
|
||||||
}
|
height = 0, depth = 0,
|
||||||
} {
|
\fi
|
||||||
\finph@nt
|
consume_label'mathphant',
|
||||||
}
|
}
|
||||||
}
|
} {
|
||||||
|
\finph@nt
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
\@ifpackageloaded {unicode-math} {} {
|
\@ifpackageloaded {unicode-math} {} {
|
||||||
\cs_new:Npn \__luamml_kernel_define_character:Nnn #1#2#3 {
|
\cs_new:Npn \__luamml_kernel_define_character:Nnn #1#2#3 {
|
||||||
|
57
luamml.dtx
57
luamml.dtx
@ -527,6 +527,25 @@
|
|||||||
% In various places luamml has to add code to kernel commands. This is done through
|
% In various places luamml has to add code to kernel commands. This is done through
|
||||||
% sockets which are predeclared in lttagging.
|
% sockets which are predeclared in lttagging.
|
||||||
%
|
%
|
||||||
|
% \subsubsection{Save socket}
|
||||||
|
% This socket is a wrapper around the \cs{luamml_save:nNn} command
|
||||||
|
% It should provided until 2025-06-01
|
||||||
|
% \begin{macrocode}
|
||||||
|
\str_if_exist:cF { l__socket_tagsupport/math/luamml/save_plug_str }
|
||||||
|
{
|
||||||
|
\NewSocket{tagsupport/math/luamml/save}{1}
|
||||||
|
\AssignSocketPlug{tagsupport/math/luamml/save}{noop}
|
||||||
|
}
|
||||||
|
% \end{macrocode}
|
||||||
|
%
|
||||||
|
% \begin{macrocode}
|
||||||
|
\NewSocketPlug{tagsupport/math/luamml/save}{luamml}
|
||||||
|
{
|
||||||
|
\luamml_save:nNn #1
|
||||||
|
}
|
||||||
|
\AssignSocketPlug{tagsupport/math/luamml/save}{luamml}
|
||||||
|
% \end{macrocode}
|
||||||
|
%
|
||||||
% \subsubsection{amsmath alignments}
|
% \subsubsection{amsmath alignments}
|
||||||
%
|
%
|
||||||
% This socket finalize the \texttt{mtable} in alignments like align or gather.
|
% This socket finalize the \texttt{mtable} in alignments like align or gather.
|
||||||
@ -610,6 +629,44 @@
|
|||||||
\AssignSocketPlug{tagsupport/math/luamml/artifact}{default}
|
\AssignSocketPlug{tagsupport/math/luamml/artifact}{default}
|
||||||
%</luatex>
|
%</luatex>
|
||||||
% \end{macrocode}
|
% \end{macrocode}
|
||||||
|
%
|
||||||
|
% \subsubsection{Math phantom socket}
|
||||||
|
% This socket is used around \cs{finph@nt}.
|
||||||
|
% It should provided until 2025-06-01
|
||||||
|
% \begin{macrocode}
|
||||||
|
\str_if_exist:cF { l__socket_tagsupport/math/luamml/finph@nt_plug_str }
|
||||||
|
{
|
||||||
|
\NewSocket{tagsupport/math/luamml/finph@nt}{2}
|
||||||
|
\NewSocketPlug{tagsupport/math/luamml/finph@nt}{default}{#2}
|
||||||
|
\AssignSocketPlug{tagsupport/math/luamml/finph@nt}{default}
|
||||||
|
}
|
||||||
|
% \end{macrocode}
|
||||||
|
%
|
||||||
|
% \begin{macrocode}
|
||||||
|
%<*luatex>
|
||||||
|
\NewSocketPlug{tagsupport/math/luamml/finph@nt}{luamml}
|
||||||
|
{
|
||||||
|
\luamml_annotate:nen {1}
|
||||||
|
{
|
||||||
|
nucleus = true,
|
||||||
|
core =
|
||||||
|
{
|
||||||
|
[0] = 'mpadded',
|
||||||
|
\ifh@\else
|
||||||
|
width = 0,
|
||||||
|
\fi
|
||||||
|
\ifv@\else
|
||||||
|
height = 0, depth = 0,
|
||||||
|
\fi
|
||||||
|
consume_label'mathphant',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{ #2 }
|
||||||
|
}
|
||||||
|
\AssignSocketPlug{tagsupport/math/luamml/finph@nt}{luamml}
|
||||||
|
%</luatex>
|
||||||
|
% \end{macrocode}
|
||||||
|
%
|
||||||
% \subsection{Patching}
|
% \subsection{Patching}
|
||||||
% For some packages, we ship with patches to make them more compatible and to
|
% For some packages, we ship with patches to make them more compatible and to
|
||||||
% demonstrate how other code can be patched to work with \texttt{luamml}.
|
% demonstrate how other code can be patched to work with \texttt{luamml}.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user