附录为常规 \chapter;附录为 Chapter-Appendix 内的 \section,但带有 \alph 章节编号

附录为常规 \chapter;附录为 Chapter-Appendix 内的 \section,但带有 \alph 章节编号

我想要这样的东西

1. Chapter 1
  1.1. Section 1.1
  1.2. Section 1.2
2. Chapter 2
...
7. Appendix
  A. Appendix 1
  B. Appendix 1

我尝试这样做:

\chapter{Chapter 1}
\section{Section 1.1}
\section{Section 1.2}
\chapter{Chapter 2}
...
\chapter{Appendix}
\renewcommand\thechapter{\Alph{section}}
\section{Appendix 1}
\section{Appendix 2}

但结果是

1. Chapter 1
  1.1. Section 1.1
  1.2. Section 1.2
2. Chapter 2
...
7. Appendix
  A.1 Appendix 1
  B.2 Appendix 1

如何摆脱 A.1 和 B.2 中的 1 和 2?

答案1

简单的:

\chapter{Chapter 1}
\section{Section 1.1}
\section{Section 1.2}
\chapter{Chapter 2}
...
\chapter{Appendix}
\renewcommand\thesection{\Alph{section}}
\section{Appendix 1}
\section{Appendix 2}

相关内容