biblatex:参考部分中的简写

biblatex:参考部分中的简写

我对 还很陌生biblatex

参考列表中是否有可能包含短标题?我希望有一些像正常条目一样的内容,每个条目看起来 +/- 类似

Jorio Marco,“与魔鬼一起扩大包裹”。保守党的对立面,收录于:Hildbrand/Tanner,《革命》,第 139–160 页。[乔里奥,帕克]

我主要关心的是最新部分。“速记列表”并没有起到什么作用。

答案1

您的参考书目示例不包含任何年份数据,但我假设您使用的是样式authortitle(或其变体之一)。另请注意shorttitleshorthand是不同的字段。

\documentclass{article}

\usepackage[style=authortitle]{biblatex}

\renewbibmacro*{finentry}{%
  \finentry
  \addspace
  \mkbibemph{\printtext[brackets]{\usebibmacro{cite}}}%
}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{Bli74,
  author = {Blinder, Alan S.},
  year = {1974},
  title = {The economics of brushing teeth},
  shorttitle = {Brushing teeth},
  journaltitle = {Journal of Political Economy},
  volume = {82},
  number = {4},
  pages = {887--891},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\textheight=120pt% just for the example

\begin{document}

Some text \autocite{Bli74}.

\printbibliography

\end{document}

在此处输入图片描述

相关内容