我正在为小学数学创建问题,我希望列举这些问题。当我使用脫位打包并枚举时,枚举会出现在问题的左下角,而不是我想要的左上角。例如,当我写:
\item \opadd[resultstyle=\color{white},carrystyle=\color{white}]{563}{278}
枚举出现在左下角。有什么解决方案吗?
答案1
添加选项voperation=top
,参见xlop
手动的第 2.2.2 节常规展示了解详情。
\documentclass{article}
\usepackage{xlop,xcolor}
\begin{document}
\begin{enumerate}
\item \opadd[voperation=top,resultstyle=\color{white},carrystyle=\color{white}]{563}{278}
\end{enumerate}
\end{document}
这也可以通过以下方式设置\opset
(例如在序言中),这样您就不必重复它:
\documentclass{article}
\usepackage{xlop,xcolor}
\opset{voperation=top}
\begin{document}
\begin{enumerate}
\item \opadd[resultstyle=\color{white},carrystyle=\color{white}]{563}{278}
\end{enumerate}
\end{document}