依次列出不同的结果、定义

依次列出不同的结果、定义

在此处输入图片描述

我如何能列举这种方式?在第 13 章中,定义 13.1 定义 13.2 定义 13.3 命题 13.4

也就是说,命题的编号是最后一个结果或定义等的后继。

答案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}

相关内容