插入引文作者,无需 natbib 或 biblatex

插入引文作者,无需 natbib 或 biblatex

我正在尝试插入引文的作者,即类似 natbib 的\citeauthor。我必须使用给定的参考书目样式 ( .bst),但此 bib 样式不支持natbib,而 biblatex 不支持.bst文件。到目前为止,我决定在文本中手动写入作者姓名。

还有其他选择吗?

以下是一个例子:

\documentclass{sigchi} % The class I need. 
\usepackage{color} % Dependency of the class I need.

\usepackage{cite} % Replacing this by natbib fails.

\begin{document}

\citeauthor{the-citation} have done great things~\cite{the-citation}.
% Obviously fails: \citeauthor is not defined.


\bibliographystyle{SIGCHI-Reference-Format} % The reference format I need.
\bibliography{biblio}

\end{document}

万一有用的话,这是文档类我正在使用和以下是参考书目样式我正在使用(尽管我认为假设这一点biblatex并且natbib不可用比尝试深入研究这个模板要容易得多)。

相关内容