2つのnatbib参照の著者を比較する

2つのnatbib参照の著者を比較する

2 つの参照が同じ著者であるかどうかを調べようとしていますnatbib。しかし、基本的な文字列比較が機能しないようです。より深い理解なしに、見つけられる限りのことをすべて試しました ( xstring、、、 ...)。何もうまくいきません。誰かが私の関数\detokenize\expandafter\relax修正してくれると嬉しいですTest

\documentclass{article}
\usepackage{natbib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
    @article{ArticleX, author = "AuthorA", year = "2000"}
    @article{ArticleY, author = "AuthorA", year = "2010"}
    @article{ArticleZ, author = "AuthorB", year = "2010"}
\end{filecontents}
\newcommand{\Test}[2]{
    \ifx\citeauthor{#1}\citeauthor{#2}
        Yes!
    \else
        No!
    \fi
}
\begin{document}
    Oh, \cite{ArticleX} and \cite{ArticleZ} don't have the same author? \Test{ArticleX}{ArticleZ} Ok!

    But \cite{ArticleX} and \cite{ArticleY} surely have! \Test{ArticleX}{ArticleY} No, either??

    \bibliographystyle{unsrtnat}
    \bibliography{\jobname}
\end{document}

答え1

これは機能します:

% https://tex.stackexchange.com/questions/8981/
\newcommand{\ignoreoutput}[1]{\setbox0\vbox{\everypar{}#1}}
\makeatletter
\newcommand{\Test}[2]{
    \ignoreoutput{\citeauthor{#1}}
    \edef\NumberOne{\NAT@name}
    \ignoreoutput{\citeauthor{#2}}
    \edef\NumberTwo{\NAT@name}
    \ifx\NumberOne\NumberTwo
        Yes!
    \else
        No!
    \fi
}

より洗練された回答を歓迎しますが、これで私の問題は解決しました。

関連情報