我正在使用 Biblatex (v3.13a),我想使用手动记录的功能backrefstyle=three+
,但我没有得到任何结果 - 它似乎不起作用,我不知道为什么。
平均能量损失
\documentclass[a4paper, 12pt]{article}
\usepackage[style=authoryear-icomp, isbn=false, backrefstyle=three+]{biblatex}
\addbibresource{\jobname.bib}
\DeclareDelimFormat{postnotedelim}{\addcolon\space}
\DeclareFieldFormat{postnote}{\mknormrange{#1}}
\DeclareFieldFormat{multipostnote}{\mknormrange{#1}}
\usepackage[utf8]{inputenc}
\usepackage[babel, german=guillemets]{csquotes}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{titling}
\listfiles
\begin{filecontents}{\jobname.bib}
@book{Heinrich.2013,
author = {Heinrich, Michael},
year = {2013},
title = {Kritik der politischen {\"O}konomie: Eine Einf{\"u}hrung},
address = {Stuttgart},
edition = {11. Aufl.},
publisher = {Schmetterling-Verl.},
isbn = {3-89657-593-7},
series = {Reihe Theorie.org}
}
\end{filecontents}
\begin{document}
Dummy \autocite[39--41]{Heinrich.2013}
\end{document}
哪个应该是Dummy (Heinrich 2013: 39ff)
提前致谢!