文檔中間的附錄?

文檔中間的附錄?

文檔中間可以有附錄嗎?這對於一起寫一本書的兩卷非常有幫助,例如,新版本的 LaTeX Companion,第 I 部分和第 II 部分,第 3 版中使用的內容。

我嘗試抓取 \appendix 命令,如下所示:

\documentclass{book}

\begin{document}
\chapter{The first chapter}
\chapter{The second chapter}
        {
        \appendix
        \chapter{The first Appendix}
        \chapter{The second Appendix}
        }
\chapter{The third chapter}
\chapter{The fourth chapter}
\end{document}

無濟於事。

答案1

指令非常簡單,定義為book\appendix

\newcommand\appendix{\par
  \setcounter{chapter}{0}%
  \setcounter{section}{0}%
  \gdef\@chapapp{\appendixname}%
  \gdef\thechapter{\@Alph\c@chapter}}

所以你不需要一個群組(因為定義都是全域的)但是在你的附錄之後

\makeatletter
\setcounter{chapter}{2}
\setcounter{section}{0}
\gdef\@chapapp{\chaptername}
\gdef\thechapter{\@arabic\c@chapter}
\makeatother

並且章節將被恢復

答案2

有的像這樣?

姆韋

\documentclass{book}
\usepackage{appendix}
\begin{document}
\tableofcontents
\part{Volume}
\chapter{bla} bla ...
\chapter{bla} bla ...
\begin{appendices}
\chapter{bla} bla ...
\chapter{bla} bla ...
\end{appendices}
\part{Volume}
\chapter{bla} bla ...
\chapter{bla} bla ...
\begin{appendices}
\chapter{bla} bla ...
\chapter{bla} bla ...
\end{appendices}
\end{document}

相關內容