biblatex footcite 风格

biblatex footcite 风格

我目前正在使用 biblatex 和 biber 来制作参考书目。在使用bibstyle=alphabeticcitestyle=alphabetic生成所需输出时,我想编辑 footcite 格式。正如您可能猜到的那样,目前它输出的内容如下:

两种风格都是字母

我想将脚注格式更改为verbose。设置citestyle=verbose解决了脚注的问题,但它也会更改文本中的引用,这是我不想要的:

citestyle 详细

是否可以设置bibstyle=alphabeticcitestyle=alphabetic以及类似footcitestyle=verbose

所以整个文档看起来应该是这样的(我使用 Photoshop 来把它们放在一起):

期望输出

我怎样才能实现这个目标?

以下是 MWE:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\begin{filecontents}{\jobname.bib}
@online{ford,
author = {Ford, Rebecca},
title  = {Earthquake: Twitter Users Learned of Tremors
          Seconds Before Feeling Them},
date   = {2011-08},
url    = {http://www.hollywoodreporter.com/news/earthquake-twitter-users-learned-tremors-226481}
}
\end{filecontents}

\usepackage[backend=biber, natbib=true, backref=true, citestyle=alphabetic, bibstyle=alphabetic, labeldate]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}

It is true that \cite{ford} is wrong.

Citing in a footnote\footcite{ford} might be adventurous.

\printbibliography

\end{document}

答案1

对于偶尔的完整脚注引用,您将需要使用\footfullcite,它将在脚注中提供完整的引用。

相关内容