调整目录的章节编号

调整目录的章节编号

我想调整目录中的编号部分。我更愿意将文档中的附录命名为“附录 1.B 一些附加图表”,将目录中的附录命名为 A.1.B......一些附加图表。其中 1 是章节,b 是附录编号。此示例将指示第二个附录

实际上,我的文档包含多个章节,这些章节可以包含附录,而且我的文档作为一个整体也会有附录。因此,我更喜欢章节内的 \renewcommand 解决方案。

为了清楚起见,我使用 \thesection 上的 \renewcommand 将最后几节重命名为附录...。我实际上并没有按照 Latex 的含义添加附录

\documentclass{book}
\begin{document}

\tableofcontents

\chapter{Test Chapter One}

\section{Test Section One}
\section{Test Section One}
\subsection{Test Subsection A}
\subsection{Test Subsection B}

\setcounter{table}{0}
\renewcommand{\thetable}{\arabic{chapter}.\Alph{section}.\arabic{table}}
\setcounter{figure}{0}
\renewcommand{\thefigure}{\arabic{chapter}.\Alph{section}.\arabic{figure}}
\setcounter{equation}{0}
\renewcommand{\theequation}{\arabic{chapter}.\Alph{section}}
\setcounter{section}{0}
\renewcommand{\thesection}{Appendix \arabic{chapter}.\Alph{section}}
\section{Test Section One}
\section{Test Section One}
\subsection{Test Subsection A}
\subsection{Test Subsection B}
\end{document}

背面的 MWE:https://www.overleaf.com/13672924fhvbftbbvpyy#/52883524/

相关内容