如何在参考书目后插入 3 个附录并将其包含在我的论文的目录中
我不知道,因为我是 Latex 的初学者
答案1
如果你只想在文档和目录中添加附录,只需写入
\documentclass{book}
\begin{document}
\tableofcontents
\bibliography
\clearpage
\appendix
\newpage%
\renewcommand{\thesection}{\Alph{section}}% For Alpha numeric number
\section{First Appendix}
% Stuff here
\section{Second Appendix}
% Stuff here
\section{Third Appendix}
% Stuff here
\end{document}