避免在后续引用中出现多余的作者和标题

避免在后续引用中出现多余的作者和标题

我针对同一作者不同时间编辑的同一作品设置了不同的书目条目。

对于\cite这些条目,我需要避免使用多余的作者姓名和标题,而是用一行“-”代替它们。我必须使用ext-verbose-trad2样式和memoir类。

下面是一个代码示例:

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

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

\begin{filecontents}{\jobname.bib}

@article{1906_Flor_SlovoNaSvjatNed,
    author = {Gualtieroni, P.},
    date = {1906-04-02},
    journal = {Narod},
    month = {4},
    number = {1},
    pages = {3},
    title = {O duchovnoe istine},
    year = {1906}}

@article{1907_Flor_NatchZhizn_Christ,
    author = {Gualtieroni, P.},
    journal = {Christianin},
    number = {4},
    pages = {705-709},
    title = {O duchovnoe istine},
    volume = {2},
    year = {1907}}

@book{1907_Flor_NatchZhizn,
    address = {Sergej Posad},
    author = {Gualtieroni, P.},
    publisher = {tip. Lavra},
    title = {O duchovnoe istine},
    year = {1907}}

@inbook{2018_Flor_NatchZhizn,
    crossref = {2018_Flor_BogosTrud},
    pages = {515-518},
    title = {O duchovnoe istine}}

@book{2018_Flor_BogosTrud,
    author = {Gualtieroni, P.},
    editor = {Brambilla, G.},
    publisher = {Florenziana},
    title = {Lavori teosofici 1902--1909},
    year = {2018}}

\end{filecontents}
\addbibresource{\jobname.bib}


\begin{document}

\begin{description}
\item[1906] \emph{On the spiritual truth}\\ {\footnotesize \cite{1906_Flor_SlovoNaSvjatNed}; cfr. also
\cite{1907_Flor_NatchZhizn_Christ,1907_Flor_NatchZhizn}; recently reprinted in:
\cite{2018_Flor_NatchZhizn}.}
\end{description}    


\end{document}

输出结果为:

在此处输入图片描述

我希望得到这样的结果:

在此处输入图片描述

答案1

使用style=authoryear给我以下输出。

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

\usepackage{babel}
\usepackage[style=authoryear]{biblatex}

\begin{filecontents}{\jobname.bib}
    
    @article{1906_Flor_SlovoNaSvjatNed,
        author = {Gualtieroni, P.},
        date = {1906-04-02},
        journal = {Narod},
        month = {4},
        number = {1},
        pages = {3},
        title = {Title of the beautiful composition},
        year = {1906}}
    
    @article{1907_Flor_NatchZhizn_Christ,
        author = {Gualtieroni, P.},
        journal = {Christianin},
        number = {4},
        pages = {705-709},
        title = {Title of the beautiful composition},
        volume = {2},
        year = {1907}}
    
    @book{1907_Flor_NatchZhizn,
        address = {Sergej Posad},
        author = {Gualtieroni, P.},
        publisher = {tip. Lavra},
        title = {Title of the beautiful composition},
        year = {1907}}
    
    @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},
        year = {2018}}
    
\end{filecontents}
\addbibresource{\jobname.bib}


\begin{document}
    
    \cite{1906_Flor_SlovoNaSvjatNed}\par
    \cite{1907_Flor_NatchZhizn_Christ}\par
    \cite{1907_Flor_NatchZhizn}\par
    \cite{2018_Flor_NatchZhizn}\par
    
    \printbibliography
    
\end{document}

引用:

在此处输入图片描述

参考书目:

在此处输入图片描述

相关内容