在 LyX 中,是否可以在附录之后开始新的章节?似乎无论我开始新的章节或段落,它都会继续在附录中写入。
答案1
这可能应该是重复的,但我找不到它。我也没有安装 lyx,但我想解决方案应该是相同的(所以这是一个 latex 解决方案)。如果 lyx 确实不同,请见谅。
问题是\appendix
重新定义了章节的打印方式。它还会重置章节计数器。您没有说明下一章应该如何编号,但保持相同的编号似乎是合理的,这意味着我们需要在调用时保存当前章节编号(\appendix
我使用\preto
etoolbox 包),然后我们需要在切换回章节时恢复章节计数器的值。
下面我定义了一个\resumechapters
执行这些操作的命令。以下是输出(已抑制分页符):
代码如下:
\documentclass[a4paper,12pt]{book}
\makeatletter
\usepackage{etoolbox}
\newcounter{savedchapter}% for remembering the last chapter number
\preto\appendix{\setcounter{savedchapter}{\arabic{chapter}}}% remembering!
\newcommand\resumechapters{% the \appendix command with some tweaks
\setcounter{chapter}{\arabic{savedchapter}}% restore chapter number
\setcounter{section}{0}% reset section counter
\gdef\@chapapp{\chaptername}% reset chapter name
\gdef\thechapter{\@arabic\c@chapter}% make chapter numbers arabic
}
\makeatother
\let\cleardoublepage\relax% compressed output of MWE
\begin{document}
\chapter{A chapter}
\appendix
\chapter{An appendix}
\resumechapters
\chapter{Another chapter}
\end{document}
答案2
subappendices
包中有一个名为附录专门为此。例如
\documentclass{book}
\usepackage{appendix}
\begin{document}
\chapter{thesis article one}
\section{introduction}
\begin{subappendices}
\section{extra info}
\end{subappendices}
\chapter{thesis article two}
\end{document}
得出:
注意:
在 subappendices 环境中,附录由章节文档中的命令引入
\section
,否则由命令引入\subsection
。实际上,这为主文档部分的末尾提供了附录,作为该部分的组成部分。subappendices 环境仅支持 title 和 titletoc 选项。
看:
http://mirror.hmc.edu/ctan/macros/latex/contrib/appendix/appendix.pdf