答案1
如果你只想要upshape
字体,不必在意它是数学字体还是文本字体。你可以使用\theoremstyle{definition}
。并且在中amsbook
,数学字体也是 Computer Modern,数学或文本中的数字相同。你不会看到差异。
\documentclass{amsbook}
\usepackage{amsmath}
\theoremstyle{definition}
\newtheorem{example}{Example}[chapter]
\begin{document}
\begin{example} 1,2,3 \end{example}
\begin{example} $1$,$2$,$3$ \end{example}
\end{document}