我正在使用amsthm
并且希望我的定理采用这种编号格式:章节定理
与默认版本的主要区别在于使用“-“ 代替 ”。“。
我可以通过定义一个新的来做到这一点theoremstyle
吗?
答案1
像这样吗?
\documentclass{report} % document class that features 'chapter' sectioning level
\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\renewcommand\thethm{\thechapter-\arabic{section}-\arabic{thm}}
\begin{document}
\setcounter{chapter}{2}
\setcounter{section}{3}
\begin{thm} aaa \label{thm:aaa} \end{thm}
A cross-reference to Theorem \ref{thm:aaa}.
\end{document}