重新定义章节后的定理编号

重新定义章节后的定理编号

当我尝试为我的数字报告建立一个简单的模板时,我遇到了这个问题。

演示代码如下:

\documentclass{article}

\usepackage{titlesec}

\renewcommand{\thesection}{\Roman{section}}
\newtheorem{theorem}{Thm}[section]

\begin{document}
\section{adssd}
    \begin{theorem}
        $a^2 = b^2 + c^2$.
    \end{theorem}
\section{adssd}
\end{document}

结果是

在此处输入图片描述

我只想要特殊的章节标题,即罗马数字和正常定理数字(例如 Thm 1.1)。我想问一下如何才能同时获得这两种风格。

答案1

\renewcommand\thetheorem{\arabic{section}.\arabic{theorem}}但这会让任何读者感到困惑。

相关内容