问题
使用我想要的样式biblatex
的包authortitle-dw
从脚注指向它的第一次出现 - 由于-option它被作为一个整体引用firstfull=true
- 如下图所示:
(当然不是红色和不是使用另一种字体:)
)
平均能量损失
\documentclass{article}
\usepackage[
style=authortitle-dw,
backend=biber,
autocite=footnote,
firstfull=true,
singletitle=true,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book {foo,
author = {Foo, Francis},
title = {All about Foo},
year = {2011},
location = {Footown},
}
@book {bar,
author = {Bar, Bernie},
title = {Barstory},
year = {2000},
location = {Barcity},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\textheight=150pt
\begin{document}
\autocite{bar}
\autocite{foo}
\autocite{bar}
\autocite{foo}
\end{document}
这将产生以下输出:
答案1
扩展 Marco Daniel 的评论:biblatex-dw
具有两种风格:authortitle-dw
(基于标准authortitle
风格)和footnote-dw
(基于authortitle-dw
,且与标准风格相似)。和风格verbose-inote
之间的主要区别在于:authortitle
verbose
对于
authortitle
样式,人们应该在(强制)书目中查找完整的书目信息。默认情况下,这些样式不会在条目的第一次引用中显示完整信息。(authortitle-dw
提供默认firstfull
设置的选项。)false
verbose
另一方面,样式没有参考书目(尽管为了方便起见,通常会添加一个)。完整的参考书目信息显示在条目的第一个(脚注)引文中(这可能会引入此条目的简写),后续引文将使用简写或包含指向第一个引文的指针。
底线:如果你想“从脚注指向其第一次出现的位置”,您正在寻找一种verbose
风格(此处footnote-dw
:)。
\documentclass{article}
\usepackage[
style=footnote-dw,
backend=biber,
autocite=footnote,
singletitle=true,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book {foo,
author = {Foo, Francis},
title = {All about Foo},
year = {2011},
location = {Footown},
}
@book {bar,
author = {Bar, Bernie},
title = {Barstory},
year = {2000},
location = {Barcity},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\textheight=100pt
\begin{document}
\autocite{bar}
\autocite{foo}
\autocite{bar}
\autocite{foo}
\end{document}