alignat
자동으로 수식에 태그를 지정하고 이 수식을 태그 P의 실제 텍스트로 삽입하도록 환경을 재정의하고 싶습니다 . 잘 작동하지만 구문을 켜면 왜 expl3
실제 텍스트가 표시됩니까 xs_StrFindGrou
? 두 번째 질문은 패키지를 사용하지 않고 기능 xstring
만 사용하여 수식을 단락의 실제 텍스트로 설정하기 위해 모든 추가 명령을 제거하는 방법입니다 . expl3
도움을 주신 모든 분들께 감사드립니다.
\documentclass{article}
\usepackage{tagpdf,amsmath,xstring}
\tagpdfsetup{tabsorder=structure,uncompress,activate-all,interwordspace=true,tagunmarked=false}
\tagpdfifpdftexT
{
\pdfcompresslevel=0
%set language / can also be done with hyperref
\pdfcatalog{/Lang (en-US)}
\usepackage[T1]{fontenc}
\input glyphtounicode
\pdfgentounicode=1
}
\tagpdfifluatexT
{
%set language / can also be done with hyperref
\pdfextension catalog{/Lang (en-US)}
\usepackage{fontspec}
\newfontface\zerowidthfont{freeserif}
}
\pagestyle{empty}
\ExplSyntaxOn
\makeatletter
\long\def\doactualtext#1{
\def\@mltext{\detokenize\expandafter{#1}}
\def\@mltexttmp{}
\StrBehind[5]{\@mltext}{ }[\@mltexttmp]
\StrGobbleRight{\@mltexttmp}{1}[\@mltext]
\tagstructbegin{tag=P,actualtext-o=\detokenize\expandafter{\@mltext}}
\tagmcbegin{tag=P}
#1
\tagmcend
\tagstructend
}
\renewenvironment{alignat}{
\collect@body\doactualtext\space
\start@align
\z@\st@rredfalse
}{
\endalign
}
\makeatother
\ExplSyntaxOn
\begin{document}
\tagstructbegin{tag=Document}
\begin{alignat}
10xy^2+15x^2y-5xy7 & = 5\left(2xy^2+3x^2y-xy7\right) = \\
& = 5x\left(2y^2+3xy-y7\right) = \\
& = 5xy\left(2y+3x-7\right)
\end{alignat}
%\tagstructend Why i get an error,that there is no structure on the stack?
\end{document}
답변1
#1
amsmath 명령에 의해 의 이후 부분이 \doactualtext
두 번 처리되므로 \tagstructend에서 오류가 발생합니다. \ifmeasuring@
측정 단계에서 이를 억제하는 데 사용할 수 있습니다 .
공백을 물결표로 바꾸지 않았기 때문에 잘못된 대체 텍스트가 표시됩니다.
\documentclass{article}
\usepackage{tagpdf,amsmath,xstring}
\tagpdfsetup{tabsorder=structure,uncompress,activate-all,interwordspace=true,tagunmarked=false}
\tagpdfifpdftexT
{
\pdfcompresslevel=0
%set language / can also be done with hyperref
\pdfcatalog{/Lang (en-US)}
\usepackage[T1]{fontenc}
\input glyphtounicode
\pdfgentounicode=1
}
\tagpdfifluatexT
{
%set language / can also be done with hyperref
\pdfextension catalog{/Lang (en-US)}
\usepackage{fontspec}
\newfontface\zerowidthfont{freeserif}
}
\pagestyle{empty}
\ExplSyntaxOn
\makeatletter
\long\def\doactualtext#1{
\def\@mltext{\detokenize\expandafter{#1}}
\def\@mltexttmp{}
\StrBehind[5]{\@mltext}{~}[\@mltexttmp]
\StrGobbleRight{\@mltexttmp}{1}[\@mltext]
\tagstructbegin{tag=P,actualtext-o=\detokenize\expandafter{\@mltext}}
\tagmcbegin{tag=P}
#1
\ifmeasuring@\else
\tagmcend
\tagstructend
\fi
}
\renewenvironment{alignat}{
\collect@body\doactualtext\space
\start@align
\z@\st@rredfalse
}{
\endalign
}
\makeatother
\ExplSyntaxOn
\begin{document}
\tagstructbegin{tag=Document}
\begin{alignat}
10xy^2+15x^2y-5xy7 & = 5\left(2xy^2+3x^2y-xy7\right) = \\
& = 5x\left(2y^2+3xy-y7\right) = \\
& = 5xy\left(2y+3x-7\right)
\end{alignat}
\tagstructend
\end{document}
나는 당신의 교체자가 무엇을 해야 할지 전혀 모릅니다.