附录编号问题

附录编号问题

我正在尝试获取以下结构(就标题而言):

Chapter 5 : Last Title
Annex 
  A - Section1Annex
  B - Section2Annex

其中Chapter 5Annex被引用为\chapter标题​​。

我设法“删除”了附件的章节编号(使用addcontentslinechapter*{Annex}定义命令“ ” \myChap),因此,没问题在那边。

然后,在下面我写下的代码:

\chapter{Last Title}
\myChap{Annex}
\appendix
\section{Section1Annex}
\section{Section2Annex}

但是,它显示以下结构:

Chapter 5 : Last Title
Annex 
  0.1 - Section1Annex
  0.2 - Section2Annex

我的问题 :

我如何才能将这些部分编号从0.1(分别0.2)切换为A(分别B)。我在处理\appendix环境方面遇到了困难。

预先感谢您的帮助。

答案1

由于缺少 MWE,解决方案建议\mychap不明且未在此处使用。

\documentclass[12pt]{report}

\usepackage{hyperref}%

\begin{document}
\tableofcontents

\chapter{The last one}


\renewcommand{\appendixname}{Annex}%
\chapter*{\appendixname}

\phantomsection
\addcontentsline{toc}{chapter}{\appendixname}%
% Eventually a \cleardoublepage here
 \cleardoublepage
\renewcommand{\thesection}{\Alph{section}}

\section{AnnexSectionOne}
\section{AnnexSectionTwo}

\end{document}

相关内容