将参考页插入中间部分,而不是最后

将参考页插入中间部分,而不是最后

我知道通常的做法是在报告末尾插入参考页。但是,我们的团队决定将参考页插入到报告中附录部分的前面。我的问题是,如果我使用过去使用的方法,参考\bibliographystyle{plain} \bibliography{final_report_ref}页只会出现在末尾,对吗?有没有办法让它出现在中间部分(即第 3 节结论;第 4 节参考文献;第 5 节附录)?非常感谢!

答案1

因为你没有给我们 MWE,所以我们只能猜测……

像这样:

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Book{Goossens,
  author    = {Goossens, Michel and Mittelbach, Frank and 
               Samarin, Alexander},
  title     = {The LaTeX Companion},
  edition   = {1},
  publisher = {Addison-Wesley},
  location  = {Reading, Mass.},
  year      = {1994},
}
@Book{adams,
  title     = {The Restaurant at the End of the Universe},
  author    = {Douglas Adams},
  series    = {The Hitchhiker's Guide to the Galaxy},
  publisher = {Pan Macmillan},
  year      = {1980},
}
@article{Heattransfer,
  author  = {Incropera, Frank P. and DeWitt, David P.},
  edition = {Fourth},
  number  = {30},
  pages   = {530},
  title   = {{Introduction to Heat Transfer}},
  url     = {https://www.amazon.com/Introduction-Heat-Transfer-Frank-Incropera/dp/0471457272},
  volume  = {0},
  year    = {2001},
  journal = {missing},
} 
\end{filecontents*}


\documentclass[toc=bibliographynumbered]{scrartcl}

\usepackage{hyperref} % <======================================= for url


\begin{document}

\tableofcontents

\section{Section 1}
\section{Section 2}
\section{Section 3}

\nocite{*}
\bibliographystyle{plainurl}
\bibliography{\jobname} % <===================================== no .bib

\appendix

\section{Appendix A}

\end{document}

得到的 pdf 格式如下:

生成的 pdf

答案2

\clearpage在您的命令之后使用\bibliography{final_report_ref}并在其后放置您喜欢的任何内容。

我通常将其放在\appendix那里并重置/破解,\setcounter{page}{1} \setcounter{chapter}{0}以便附录有自己的页码。

\bibliography{final_report_ref}
\clearpage
% put your stuff after this.

相关内容