关于参考书目的简短说明

关于参考书目的简短说明

我想把这个注释放在我的参考书目上。最好放在标题和 \bibitems 之间。我该怎么做?

\noindent On long term, articles that are published merely as web pages can be
          accessed via the ``way back machine'' of           
          \url{http://www.archive.org}}

答案1

对于标准文档类,您可以重新定义\thebibliography

\documentclass{article}
\usepackage{url}

\let\theOLDbibliography\thebibliography
\renewcommand{\thebibliography}[1]{\theOLDbibliography{#1}%
  \item[]\noindent On long term, articles that are published merely as web pages can be
          accessed via the ``way back machine'' of           
          \url{http://www.archive.org}}

\begin{document}

\begin{thebibliography}{9}
  \bibitem{one} First bibitem.
\end{thebibliography}

\end{document}

KOMA-Script 包的类提供了\setbibpreamble实现此功能的。回忆录文档类提供了类似的\prebibhook命令。

答案2

使用 biblatex 的操作方法如下:

\documentclass{article}

\usepackage{biblatex}

\defbibnote{mynote}{On long term, articles that are published merely as web pages can be
    accessed via the ``way back machine'' of \url{http://www.archive.org}}

\usepackage{filecontents}

\begin{filecontents}{biblatextest.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
}
\end{filecontents}

\addbibresource{biblatextest.bib}

\begin{document}

\nocite{*}

\printbibliography[prenote=mynote]

\end{document}

相关内容