参考文献和脚注

参考文献和脚注

这是我的第一个问题。我正在写一份报告,我希望引用References显示在每页的页脚中。我还希望我的报告有一个参考部分,显示我在报告末尾使用的所有参考资料,但没有数字 \bibliographystyle

我怎样才能用 LateX 做到这一点?

答案1

这适用\footcitebiblatex后端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}

在此处输入图片描述

相关内容