帮助 Lyx 命令 \appendix

帮助 Lyx 命令 \appendix

为了完成我的论文,我决定直接在 Lyx 中插入命令“\appendix”来改进我的工作,但我不知道如何结束这部分。我想在两个不同的章节之间插入附录,但如果我使用此命令,之后我写的所有内容都将在附录内,而无法返回到“正常章节”。有人能帮帮我吗?有人能解释一下如何结束 \appendix 部分吗?非常感谢!!

答案1

您可以使用该appendix包:

\documentclass{book} % or report or ...
\usepackage{appendix}
\begin{document}
\chapter{First}
text
\begin{subappendices}
\section{An appendix}
text
\section{Another appendix}
text
\end{subappendices}
\chapter{Second}
text
\end{document}

阅读手册(> texdoc appendix)以了解更多信息。

答案2

这个新命令\noappendix应该可以工作,至少在手动设置的情况下。

\makeatletter
\newcommand\noappendix{\par
  \setcounter{chapter}{2}% <--manually insert the number of chapters before \appendix was used
  \setcounter{section}{0}%
  \gdef\@chapapp{\chaptername}%
  \gdef\thechapter{\@arabic\c@chapter}
}
\makeatother

相关内容