替代定理编号分隔符

替代定理编号分隔符

我正在使用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}

相关内容