附录根本不起作用,请帮忙。

附录根本不起作用,请帮忙。

我想在论文中附上附录(仅一个附录),位于参考书目之后。我使用的是书籍类,并将每个章节放在单独的文件中。

当我尝试添加附录时,整个文档根本就无法编译。

这是我所拥有的,包括我尝试过但没有奏效的东西:

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{import} 
%\usepackage[toc,page]{appendix} % to add appendix %% <- this did not work
\usepackage{subfiles} % to help manage subfiles (i.e. chapters) 
\begin{document}
\frontmatter
\input{title.tex}
\mainmatter
\chapter{Introduction}
\import{Chapters/}{1_Introduction.tex}
\bibliographystyle{apa} 
\bibliography{mybibliography}  
%\chapter{APPENDIX} %did not work
%\import{Chapters/}{Z_Appendix.tex} % did not work
%
%\appendix % 1a/3a didn't work
%\chapter{Appendix} %2a/3a didn't work
%\input{Chapters/}{Z_Appendix.tex} %3a/3a didn't work
\end{document}

我希望这很清楚——这是我第一次在这里发帖,所以如果有更多信息请告诉我。谢谢!

答案1

这不是对您的问题的直接回答,但是,如果您愿意改变撰写论文的方式,它可以为您提供帮助。

在类似情况下我使用主文档如下:

\includeonly{
    chapter-1/file-1,
    chapter-2/file-2,   
    chapter-3/file-3,   
    ....
    chapterApp/apendix-A,
    bibliography}
%---------------------------------------------------------------%
    \documentclass[<options>]{book}
    ...

\begin{document}
    \pagestyle{plain}
%---------------------------------------------------------------%
    \frontmatter
\tableofcontents                                
\cleardoublepage
    \listoffigures                                  
\clearpage
    \listoftables                                   
%---------------------------------------------------------------%
    \mainmatter
    \pagestyle{...}
    \chapterstyle{...}
%---------------------------------------------------------------%
    \include{chapter-1/file-1}
    \include{chapter-2/file-2} 
    ....
    \include{chapterApp/apendixA}
    \include{ch10/sdv-ka-ch11ZigBee}
%---------------------------------------------------------------%
    \backmatter
    \include{bibliography} 
%---------------------------------------------------------------%
\end{document}

这种“经典”方法已多次得到证实。通过部分注释文件,includeonly您可以编写论文的所需部分,并在章节之间建立有效的超链接。如图所示,文件存储在目录中chapter-x,我通常会在其中形成图像和表格的子目录。对于它们,我使用独立包,它允许绘制图像或编写表格,而无需使用主文档。它们包含在带有input或的文件中includegraphics,取决于它们的数量。

相关内容