Я пытаюсь выяснить, имеют ли две ссылки одного и того же автора с 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
}
Я по-прежнему приветствую более элегантные ответы, но это решает мои проблемы.