我在涉及交叉引用的书目条目中使用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}
给予
应该给予第二个条目
注:讨论了类似的问题这里,但示例代码包含很多复杂内容,我无法理解答案。