当样式设置为文本时是否xlop
支持。如果不支持,是否有办法将样式设置为文本以隐藏结果。resultstyle
\documentclass{article}
\usepackage{xcolor}
\usepackage{xlop}
\usepackage{pstricks}
\begin{document}
\opadd[style=text,resultstyle=\color{white}]{1}{2}
\end{document}
答案1
该resultstyle
键对文本样式无效。我可以为您提供一个\op@textoperation
以不同方式完成工作的补丁:
\documentclass{article}
\usepackage{xlop}
\usepackage{regexpatch}
\newif\ifshowresult
\newcommand{\showornot}[1]{%
\ifshowresult#1\else\phantom{#1}\fi
}
\makeatletter
\xpatchcmd*{\op@textoperation}{\Op@@r}{\showornot{\Op@@r}}{}{}
\makeatother
\begin{document}
X\opadd[style=text]{1}{2}X
\showresulttrue
X\opadd[style=text]{1}{2}X
\end{document}
' X
s 的存在表明结果还有剩余的空间。