在交叉引用条目中使用短标题字段

在交叉引用条目中使用短标题字段

我在涉及交叉引用的书目条目中使用shorttitle。我想shorttitle在父条目已被调用时显示该字段。

我必须使用ext-verbose-trad2风格和memoir等级。

下面是一个示例代码:

\documentclass[12pt, a4paper, openright, oneside]{memoir}

\usepackage{babel}

\usepackage[style=ext-verbose-trad2]{biblatex}

\begin{filecontents}[overwrite]{\jobname.bib}
@inbook{2018_Flor_NatchZhizn,
    crossref = {2018_Flor_BogosTrud},
    pages = {515-518},
    title = {Title of the beautiful composition}
}
@book{2018_Flor_BogosTrud,
    author = {Gualtieroni, P.},
    editor = {Brambilla, G.},
    publisher = {Florenziana},
    title = {Lavori teosofici 1902--1909},
    shorttitle = {LT.1902--1909},
    year = {2018}
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}

\cite{2018_Flor_BogosTrud}\par
\cite{2018_Flor_NatchZhizn}
    
\end{document}

给予

在此处输入图片描述

应该给予第二个条目

在此处输入图片描述

注:讨论了类似的问题这里,但示例代码包含很多复杂内容,我无法理解答案。

相关内容