拯救亞里斯多德:Biblatex 重新定義如何以所選風格為條件(或以其他方式變得更加簡單)?

拯救亞里斯多德:Biblatex 重新定義如何以所選風格為條件(或以其他方式變得更加簡單)?

一般來說

\Citeauthor{aristotle:rhetoric,aristotle:poetics}

會排版Aristotle; Aristotle而不是簡單的Aristotle。為了避免這種情況,我請求\citeauthor朋友們幫助我表現得更像他們的\textcite同行。作為回應,我得到了優秀的來自moewe的回答這成為我的biblatex.cfg.

authoryear這對於樣式非常有效。然而,它在其他情況下效果不佳。這是完全可以理解的,但我想讓它更好地防止人為錯誤(尤其是我的錯誤)。

在理想的情況下,程式碼顯然適用於所有樣式。但是,我希望以下問題可能更現實:

是否可以檢查目前樣式,以便僅在加載了已知相容樣式的情況下才執行變更?例如,(引用)樣式是否儲存在我可以檢查的巨集中?

顯然,我會回到Aristotle; Aristotle,但我可以忍受這一點。我想避免的是一種更險惡的情況,即亞里斯多德不是被克隆,而是被消滅或消失。

\documentclass{article}
\usepackage[backend=biber,style=verbose]{biblatex}
\bibliography{biblatex-examples}
\makeatletter
% ateb moewe: http://tex.stackexchange.com/a/352471/ addaswyd o gôd Biblatex am \textcite et al.
% BEGIN redefine \citeauthor et al. to behave more like \textcite et al.
\providebibmacro*{cite:reinit}{%
  \global\undef\cbx@lasthash
  \global\undef\cbx@lastyear
}
\providebibmacro*{cite:init}{\usebibmacro{cite:reinit}}

\newbibmacro*{citeauthor}{%
  \ifnameundef{labelname}
  {\usebibmacro{cite:reinit}}
  {%
    \iffieldequals{namehash}{%
      \cbx@lasthash
    }{}{%
      \printnames{labelname}%
      \stepcounter{textcitecount}%
      \savefield{namehash}{\cbx@lasthash}%
    }%
  }%
  \setunit{\textcitedelim}%
}

\DeclareCiteCommand{\cbx@citeauthor}
{%
  \usebibmacro{cite:init}%
}{%
  \usebibmacro{citeindex}%
  \usebibmacro{citeauthor}%
}{}{%
  \usebibmacro{postnote}%
}

\providerobustcmd{\cbx@textcite@init}[2]{%
  \setcounter{textcitetotal}{0}%
  \setcounter{textcitecount}{0}%
  \def\cbx@savedcites{#1}#2\cbx@savedcites\empty}

\DeclareCiteCommand{\citeauthor}[\cbx@textcite@init\cbx@citeauthor]{%
  \gdef\cbx@savedkeys{}%
  \citetrackerfalse
  \pagetrackerfalse
  \DeferNextCitekeyHook
  \usebibmacro{cite:init}%
}{%
  \ifthenelse{%
    \iffirstcitekey\AND\value{multicitetotal}>0%
  }{%
    \protected@xappto\cbx@savedcites{()(\thefield{multipostnote})}%
    \global\clearfield{multipostnote}%
  }{}%
  \xappto\cbx@savedkeys{\thefield{entrykey},}%
  \iffieldequals{namehash}{%
    \cbx@lasthash
  }{}{%
    \stepcounter{textcitetotal}%
    \savefield{namehash}{\cbx@lasthash}%
  }%
}{}
{%
  \protected@xappto\cbx@savedcites{%
    [\thefield{prenote}][\thefield{postnote}]{\cbx@savedkeys}%
  }%
}

\DeclareDelimcontextAlias{cbx@citeauthor}{textcite}

% END redefine \citeauthor et al
\makeatother
\begin{document}
  \Citeauthor{aristotle:rhetoric,aristotle:poetics}
\end{document}

答案1

目前樣式儲存在內部巨集\blx@bbxfile\blx@cbxfile.快樂分支!

\documentclass{article}

\usepackage[style=authoryear,citestyle=verbose]{biblatex}

\begin{document}

\csname blx@bbxfile\endcsname

\csname blx@cbxfile\endcsname

\end{document}

在此輸入影像描述

答案2

這是對亨利·門克的回答,以防萬一其他人需要這樣的東西。基於該答案,以下是我在 中設定條件化的方法biblatex.cfg

% ateb Henri Menke: https://tex.stackexchange.com/a/365438/
% bibstyle name: \csname blx@bbxfile\endcsname
% citestyle name: \csname blx@cbxfile\endcsname

\newif\ifcfr@biblatex@authorcomp
\cfr@biblatex@authorcompfalse
\def\cfr@blx@splitfile#1-#2\@null{#1}
\edef\tempa{\expandafter\cfr@blx@splitfile\blx@cbxfile-x\@null}
\edef\tempb{authoryear}
\edef\tempc{authortitle}
\edef\tempd{alphabetic}
\edef\tempe{numeric}
\edef\tempf{reading}
\ifx\tempa\tempb
  \cfr@biblatex@authorcomptrue
  \else\ifx\tempa\tempc
    \cfr@biblatex@authorcomptrue
    \else\ifx\tempa\tempd
      \cfr@biblatex@authorcomptrue
      \else\ifx\tempa\tempe
        \cfr@biblatex@authorcomptrue
        \else\ifx\tempa\tempf
          \cfr@biblatex@authorcomptrue
        \fi
      \fi
    \fi
  \fi
\fi

\ifcfr@biblatex@authorcomp

  ...

\else

  ...

\fi

事實證明,幾乎任何樣式都可以,但verbose可以使用 moewe 提供的重新定義。但是,為了安全起見,我對可以正常工作的標準樣式進行了更冗長的檢查,排除了verbose不正常的 和draft以及debug特殊情況。

相關內容