我想在我的参考书目中添加一行
url 资源最后访问时间为 2012-12-06
就在标题(参考书目)和列表中第一个参考文献之间。
我正在使用简单的 BibTeX:
\documentclass[bibtotoc]{scrreprt}
...
\begin{document}
...
\bibliographystyle{alpha}
\bibliography{references}
\end{document}
我宁愿写一行最后访问的内容,而不是向所有在线资源添加 10-15 条最后访问的注释。
答案1
KOMA-Script 提供\AfterBibliographyPreamble
可用于此目的的脚本:
\documentclass{scrreprt}
\AfterBibliographyPreamble{URL ressources last accessed on 2012-12-06.}
\begin{document}
\cite{Knuth:ct-a}
\bibliographystyle{alpha}
\bibliography{texbook1}
\end{document}