在 amsbookclass 中自定义章节编号而不影响子章节编号

在 amsbookclass 中自定义章节编号而不影响子章节编号

我正在使用 amsbook 类。是否可以自定义章节编号而不影响子章节编号,如下所示。

\documentclass{amsbook}

\begin{document}
\section{Some Section}
\subsection{Some Subsection}
\section{Some Section}
\subsection{Some Subsection}
\subsection{Some Subsection}
\end{document}

我的目标是获得以下编号:

单元 01-01 部分章节

1.1.1 部分小节

单元 01-02 部分

1.2.1 部分小节

1.2.2 部分小节

答案1

我猜你想要的是如下的东西:

\documentclass{amsbook}

\usepackage{fmtcount}

\renewcommand{\thesection}{Unit \padzeroes[2]{\decimal{chapter}}-\padzeroes[2]{\decimal{section}}}
\renewcommand{\thesubsection}{\decimal{chapter}.\decimal{section}.\decimal{subsection}}
\begin{document}
\chapter{Some Chapter}
\section{Some Section}
\subsection{Some Subsection}
\section{Some Section}
\subsection{Some Subsection}
\subsection{Some Subsection}

\end{document}

在此处输入图片描述

相关内容