问题

问题

问题

使用我想要的样式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之间的主要区别在于:authortitleverbose

  • 对于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}

在此处输入图片描述

相关内容