编辑:这个问题已经解决了。很简单:其中一个附录\end{document}
由于复制粘贴错误而出现错误。所以如果你遇到这个问题,请搜索类似的东西。我为在这里解决问题所浪费的时间道歉……
我在 latex 文章中包含附录时遇到了问题。编译时,我包含在代码中的 5 个附录中只有 2 个实际上包含在 pdf 中。最后 3 个附录中缺少文本和目录。TexShop 编译时没有任何问题。
使用的代码是:
\documentclass[a4paper,english,12pt]{article}
\usepackage{graphicx, tabularx, amssymb, amsmath, wasysymb, booktabs, url, fancyhdr}
\usepackage{appendix, enumerate, geometry, parskip, cite}
\usepackage[hang,small,bf]{caption}
\usepackage{geometry, parskip}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
%Document contents
%------------- The Bibliography -------------
\addcontentsline{toc}{section}{References}
\newpage
\bibliography{Bibliography/ref}
\bibliographystyle{plain} %unsrt
%------------- Appendices -------------
\newpage
\appendix
\addappheadtotoc
\input Appendices/appendix_group-logs
\input Appendices/appendix_spgr-task
\input Appendices/appendix_group-contract
\input Appendices/appendix_group-contract-revised
\input Appendices/appendix_group-agreement
\end{document}
有人知道发生了什么事吗?提前谢谢!=)