答案1
笔记:如果你的问题能向 MWE 提供就更好了。
你只需要根据需要设置层次结构即可。以下两行代码可能对你有帮助。
\newtheorem{definition}{Definition}[section]
\newtheorem{proposition}[definition]{Proposition}
解释:
\newtheorem{definition}{Definition}[section]
[section]
这是参数表示重新启动的示例定义计数器在每一个新的部分。
\newtheorem{proposition}[definition]{Proposition}
在这种情况下,proposition
创建a,它将使用与definition
环境相同的计数器。
为了更好地理解:
\documentclass{article}
\newtheorem{definition}{Definition}[section]
\newtheorem{proposition}[definition]{Proposition}
\begin{document}
\section{Introduction}
Theorems can easily be defined:
\setcounter{section}{13}
\begin{definition}
Text A
\end{definition}
\begin{definition}
Text B
\end{definition}
\begin{definition}
Text C
\end{definition}
\begin{proposition}
Text D
\end{proposition}
\end{document}