引用后的附录不在toc和图标签丢失

时间:2018-05-10 09:25:41

标签: latex

我正在尝试为我的硕士论文设置附录,其中基本上只包括数字。这些将在“图表清单”的末尾引用。 我打算将数字称为“图A.1”,“图A.2”等。 此外,附录应该是目录的一部分。

只要它出现在参考书目之前,这种方法就可以了。 然而,阑尾应该在之后出现,并且一旦我将其移动到那里,图形仅被称为“图.1”并且它从TOC中消失。 (请注意,这些数字仍显示在数字列表中,但名称错误。)

如何在参考文献附近附录中获得相同的结果?

\documentclass[a4paper, 12pt]{article}
\usepackage{fancyhdr}
\renewcommand{\figurename}{Fig.}

\begin{document}
\tableofcontents

\fancyhead[EC]{\large REFERENCE LIST}% page header is always ``Reference List''
\fancyhead[OC]{\large REFERENCE LIST}% 

\section* {Reference List} %removes the section from sections numbers and TOC
\addcontentsline {toc}{section}{Reference List} %adds the section to TOC
\bibliographystyle{THESIS2} %my custom bibliography style
\renewcommand{\section}[2]{} %removes superfluous ``References'' title
\bibliography{Literatur} %calls my .bib file

\newpage

\fancyhead[EC]{\large APPENDIX}
\fancyhead[OC]{\large APPENDIX}


\addcontentsline {toc}{section}{Appendix}
\appendix

\section{Appendix}

\end{document}

感谢您的帮助!

0 个答案:

没有答案
相关问题