使用 tex 子文件作为附录,并带有单独的目录和首页

使用 tex 子文件作为附录,并带有单独的目录和首页

我有两个非常相似的文件;它们的序言非常相似。它们也是完整的文档,有自己的章节、封面和目录。我想使用其中一个文件(假设MAIN.tex为主文档),另一个文件(假设ADDITION.tex为附录)。

我目前正在使用该subfiles包来实现这个功能,并且它运行正常,但是有两件事我想改变:

  • 在主文档的目录中,它将章节列为1 a, 2 b, 3 c, etc,然后\appendix继续A x, B y, C z。相反,我希望它说1 a, 2 b, 3 c, A. DocumentName
  • 目前,该ADDITION.tex部分根本没有目录。我希望本文档的章节像常规文档一样显示;1. 简介;2. 研究;等等。

可以这样实现吗?我也对这个standalone包进行了一些调整,但对我来说没什么用。下面是相关文件的主要部分,以供参考。

主文本

\documentclass[a4paper,twoside]{report}

\input{_support/preamble}

\begin{document}

\input{_support/titlepage}

\setcounter{tocdepth}{1}

\input{chapters/00_introduction}

\tableofcontents

\chapter{Problem statement}
\input{chapters/1_problemstatement}

\chapter{Deliverables}
\input{chapters/2_deliverables}

\chapter{Requirements}
\input{chapters/3_requirements}

\chapter{Design}
\input{chapters/4_design}

\chapter{Quality Assurance}
\input{chapters/5_qualityassurance}

\chapter{Client Involvement}
\input{chapters/6_clientinvolvement}

\chapter{Project management}
\input{chapters/7_projectmanagement}

\subfile{addition/ADDITION}

\end{document}

添加.tex

\documentclass[../MAIN.tex]{subfiles}

\begin{document}

\appendix

\input{ADDITION/__support/titlepage}

\setcounter{tocdepth}{1}

\input{ADDITION/arch_chapters/00_introduction}

\tableofcontents

\input{ADDITION/arch_chapters/05_assumptions}
\input{ADDITION/arch_chapters/10_system_scope}
\input{ADDITION/arch_chapters/20_environment}
\input{ADDITION/arch_chapters/30_design}

\end{document}

相关内容