增加文档深度

增加文档深度

我正在尝试使用 进行输入amsart。我希望定义、引理定理等的编号应为 xyz 形式,其中 x 为节,y 为子节,z 为定理的实际编号。我用过,\setcounter{secnumdepth}{4}但似乎不起作用。(而且我不需要任何目录)。请帮忙。

答案1

secnumdepth是不同的东西;它决定哪些部分标题应该接收数字,而不是它们接收的数字。

当你定义你的definitionslemmas等时,你可以选择确定它们继承哪些计数器;例如,

\newtheorem{definition}{Definition}[subsection]

将定义definition使用subsection计数器的环境。以下是完整的 MWE:

% arara: pdflatex
\documentclass{amsart}
\usepackage{lipsum}

\newtheorem{definition}{Definition}[subsection]
\newtheorem{lemma}{Lemma}[subsection]

\begin{document}

\begin{definition}
\lipsum[1]  
\end{definition}
\begin{lemma}
\lipsum[1]  
\end{lemma}

\end{document}

相关内容