在 biber 中使用 booktitle 别名

在 biber 中使用 booktitle 别名

我有几件不同的作品,它们属于一个名字很长的系列,例如,

@incollection{item1,
title={Some article},
booktitle={Very Long Collection of Obscure Conference Papers in Memory of John Doe and Other Studies on Obscure Topics},
...

@incollection{item2,
title={Some other article},
booktitle={Very Long Collection of Obscure Conference Papers in Memory of John Doe and Other Studies on Obscure Topics},
...

我正在使用 Biber 和 BibLaTeX 包在脚注中生成书目参考(我必须使用一些晦涩难懂的欧洲书目标准)。我想为书名定义一个别名,这样当我第一次引用这个合集中的某个内容时,就会打印全名,但之后只打印别名,例如,

正如 Foo Bar 所写的(脚注:参见 Bar,Foo,《纪念 John Doe 的非常长的晦涩会议论文集和其他关于晦涩主题的研究》(VLC)中的某篇文章),但 Baz 不同意他的观点(脚注,参见 Baz,《VLC 中的某篇其他文章》。

这可能通过 biber 来实现吗?

编辑:现在我正在使用 gost-footnote 样式,它遵循俄罗斯 GOST 7.0.5-2008:

\documentclass[12pt,a4paper,oneside,article]{memoir} 
\usepackage{xunicode,fontspec,xltxtra}
\usepackage[style=gost-footnote,sortlocale=ru,natbib=true]{biblatex}
\bibliography{/path/to/mybibfile}

...

Some text\autocite[See][p. 123]{item1}, some other text\autocite[See][p. 123]{item2}.

相关内容