这是我的第一个问题。我正在写一份报告,我希望引用References
显示在每页的页脚中。我还希望我的报告有一个参考部分,显示我在报告末尾使用的所有参考资料,但没有数字
\bibliographystyle
。
我怎样才能用 LateX 做到这一点?
答案1
这适用\footcite
于biblatex
后端bibtex
和引用样式alphabetic
。
\documentclass[11pt,a4paper]{article}
\usepackage[backend=bibtex,style=alphabetic]{biblatex}
\begin{filecontents}{mybiblo.bib}
@article{MBBL2014,
author = {Ministeriet for by Bolig og Landdistrikter},
title = {{Matriklens Udvidelse}},
url = {http://grunddata-ejendom-adresse.dk/matriklens\_udvidelse},
urldate = {2015-04-20},
year = {2014}
}
\end{filecontents}
\usepackage{blindtext}
\addbibresource{mybiblo.bib}
\begin{document}
\blindtext\footcite{MBBL2014}
%\clearpage
\printbibliography
\end{document}