在不同文章中引用同一作者 (biblatex-aer)

在不同文章中引用同一作者 (biblatex-aer)

我想引用同一作者的两篇文章,使用biblatex引用样式biblatex-aer(https://github.com/dmsul/biblatex-aer)。但是,当我使用时\textcite{key1,key2},我得到例如

Gurley 和 Shaw (1955), 1966

代替

Gurley 和 Shaw(1955、1966)

深入研究代码biblatex-aer,它可以归结为以下代码片段:

\renewbibmacro*{textcite}{%
  \ifboolexpr{
    ( not test {\iffieldundef{prenote}} and
      test {\ifnumequal{\value{citecount}}{1}} )
    or
    ( not test {\iffieldundef{postnote}} and
      test {\ifnumequal{\value{citecount}}{\value{citetotal}}} )
  }
    {\DeclareFieldAlias{textcitehyperref}{noformat}}
    {}%
  \printtext[textcitehyperref]{%
    \restorebibmacro{textcite}%
    \usebibmacro{textcite}}}

如果我删除这些行,我会收到正确的引用,但是hyperref不会再为整个名称着色,而只会显示出版年份。

你知道如何解决这个问题吗?

答案1

使用的代码https://github.com/dmsul/biblatex-aer/blob/master/biblatex-aer.tex获取引文中的完整链接取自 Audrey 的回答超链接名称与 biblatex 作者年份 (biblatex 1.4b)。该答案是在style=authoryear,考虑的情况下编写的(它也适用于其他一些风格),但biblatex-aer基于biblatex-chicagoauthordate风格,它更类似于更复杂的风格style=authoryear-comp,(此外biblatex-chicago它本身也是非常复杂的)。

这意味着你需要为链接采用不同的策略。以下变体受到 Audrey 的代码的启发超链接名称与 biblatex 作者年份 (biblatex 1.4b)并且我的回答是如何改变引用中括号前半部分的颜色?

我还更新了粗体名称的代码,以便biblatex-aer.tex以下序言完全取代biblatex-aer.texhttps://github.com/dmsul/biblatex-aer/blob/master/biblatex-aer.tex

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[authordate, backend=biber, uniquename=false, noibid]{biblatex-chicago}
\usepackage[colorlinks]{hyperref}

\makeatletter
\newrobustcmd{\blx@imc@transparentprinttext}[2][]{%
  \ifblank{#2}
    {}
    {\ifblank{#1}
       {\let\blx@theformat\@firstofone}
       {\blx@getformat\blx@theformat{ffd}{#1}{}}%
     \ifdefvoid\blx@theformat
       {}
       {\blx@theformat{#2}}}}

\newcommand*{\blx@imc@iffieldequalstr@swap}[2]{\iffieldequalstr{#2}{#1}}

\newcommand*{\blx@imc@iffieldequalsdefstring}[2]{%
  \expandafter\blx@imc@iffieldequalstr@swap\expandafter{#2}{#1}}

\blx@regimcs{\transparentprinttext \iffieldequalsdefstring}
\makeatother

\DeclareFieldFormat{citehyperref}{%
  \DeclareFieldAlias{bibhyperref}{noformat}%
  \bibhyperref{#1}}

\letbibmacro{orig:cite}{cite}

\renewbibmacro*{cite}{%
  \transparentprinttext[citehyperref]{%
    \usebibmacro{orig:cite}}}

\letbibmacro{orig:textcite}{textcite}
\letbibmacro{orig:textcite:postnote}{textcite:postnote}

\renewbibmacro*{textcite:postnote}{}

\renewbibmacro*{textcite}{%
  \transparentprinttext[citehyperref]{%
    \usebibmacro{orig:textcite}%
    \ifnumequal{\value{citecount}}{\value{citetotal}}
      {\usebibmacro{orig:textcite:postnote}}
      {}%
  }%
}

\newcommand\ifmknamebold{%
  \ifboolexpr{test {\ifcurrentname{labelname}}
              or
              test {\iffieldequalsdefstring{labelnamesource}{\currentname}}}}

\DeclareNameWrapperFormat{default}{\ifmknamebold{\mkbibbold{#1}}{#1}}
\DeclareNameWrapperFormat{labelname}{#1}


\addbibresource{biblatex-examples.bib}


\begin{document}
\textcite{knuth:ct:a,knuth:ct:b}

\cite{sigfridsson,gaonkar:in,westfahl:space,westfahl:frontier,companion}

\printbibliography
\end{document}

完全链接的引文和参考书目片段(带有粗体标签名称/排序名称)。

相关内容