更改附录中的目录

更改附录中的目录

当你点击附录时,有没有办法改变目录部分布局?

我希望以下内容有附录 A.标题,而不是页码: 在此处输入图片描述

我的 \thesection 中的附录 A 遮住了标题。我尝试“更新”l@section 以尝试进行调整,但我真的不知道该怎么做。

我正在设置附录命令,例如:

\newcommand{\clearemptydoublepage}    
  {\newpage{\pagestyle{empty}\cleardoublepage}}

\renewcommand\appendix{\par
  \clearemptydoublepage
  \setcounter{section}{0}
  \setcounter{subsection}{0}

  \renewcommand\section{%
      \renewcommand\thesection{\appendixname \ \@Alph\c@section}
                               \@startsection {section}{1}{\z@}%
                               {-3.5ex \@plus -1ex \@minus -.2ex}%
                               {2.3ex \@plus.2ex}%
                               {\centering\normalfont
                               \normalsize\bfseries\scshape}}

  \renewcommand\subsection{%
     \renewcommand\thesection{\@Alph\c@section}
                                 \@startsection{subsection}{2}{\z@}%
                                 {-3.25ex\@plus -1ex \@minus -.2ex}%
                                 {1.5ex \@plus .2ex}%
                                 {\normalfont\normalsize\bfseries\scshape}}

  \renewcommand\thesubsection{\thesection.\@arabic\c@subsection}
}

然后执行以下操作:

\appendix

\makeappendixtitle{Add title for appendix A}
\section{Title}
\subsection{Appendix Sub}
First appendix

我的阑尾本身看起来很好,如下所示:

在此处输入图片描述

答案1

使用页面会更简单appendix。它有一个选项,可以将单词放在Appendix正文中的每个附录之前,但在目录中隐藏它。

示例内容

附录示例

\documentclass{article}

\usepackage[title]{appendix}

\begin{document}
\tableofcontents

\section{Ordinary section}

\cleardoublepage
\begin{appendices}
  \section{Title}
  \subsection{Appendix Sub}
  First appendix
\end{appendices}

\end{document}

相关内容