当我使用时\[\bigoplus\limits blah blah, \qedhere\]
,我发现它\bigoplus
变得更大更粗。我不知道如何让它正常。请帮助我,谢谢。
答案1
承认 egreg 的观察,即问题不在于\qedhere
,而在于显示样式与文本样式的使用,我在这里提供了一种处理显示样式\bigoplus
的解决方案。\bigoplus
您可以在此处定义一个新的数学运算符\medoplus
,它使用\textstyle
的版本\bigoplus
,即使在显示的方程式中也是如此。
已编辑以提供更小的数学风格。
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator*\medoplus{\mathchoice
{\textstyle\bigoplus}
{\textstyle\bigoplus}
{\scriptstyle\bigoplus}
{\scriptscriptstyle\bigoplus}
}
\begin{document}
This is inline with \verb|\limits| $\bigoplus\limits_1^2$ versus textstyle $\medoplus_1^2$.
\[\mbox{displaystyle} \bigoplus_1^2 \mbox{versus textstyle operator} \medoplus_1^2
\]
And now for other math styles
\[
\medoplus_1^2\quad \scriptstyle \medoplus_1^2 \quad \scriptscriptstyle \medoplus_1^2
\]
\end{document}