我需要重新定义定理样式。是否可以将数字改为字母?
\theoremstyle{definition}
\newtheorem{problem}{Problem}
\begin{problem}
fff
\end{problem}
\begin{problem}
ccc
\end{problem}
我需要这样做:
问题 A. fff
问题 B.ccc
而不是使用数字。
答案1
改变计数器的表示形式,在本例中problem
是计数器,并\theproblem
保存表示形式:
\documentclass{article}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{problem}{Problem}
\renewcommand\theproblem{\Alph{problem}}
\begin{document}
\begin{problem}
test
\end{problem}
\end{document}
当然,在最多解决 26 个问题后,请务必小心重置计数器。