我想改变用以下方式替换引用的行为同上。
如果某一特定作品有一系列的多次引用,则第二次引用之后的所有引用都将被替换为“ibid”。我想替换第三次(或n第-次)发生。
我使用biblatex
选项citestyle=authoryear-ibid
。
以下代码生成以下输出:
\documentclass[a4paper, fontsize=11pt]{scrartcl}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{blindtext}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{Surname.2009,
author = {Mary Surname},
year = {1999},
title = {Title},
address = {City},
publisher = {{Publisher}}
}
\end{filecontents}
\usepackage[bibstyle=authoryear, citestyle=authoryear-ibid, natbib=true, ibidtracker=context]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
She writes `Quote' \citep[264]{Surname.2009}, and `Quote' \citep[23]{Surname.2009}, and `Quote' \citep[431]{Surname.2009}.
\printbibliography
\end{document}
我想拥有同上。最后一次引用只有一次。是否有可能访问biblatex
包中的计数器?