是否使用 splncs03 书目样式启用 \citet?

是否使用 splncs03 书目样式启用 \citet?

我想使用该\citet{Author2016}命令,因为在使用时它是可能的 \bibliographystyle{plainnat}

使用\bibliographystyle{splncs03},因此不能简单地改变我的参考书目的风格。

非常感谢您的帮助!

\documentclass{llncs}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[colorlinks=FALSE]{hyperref}

\usepackage{bibnames}
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
\addto\captionsenglish{\renewcommand{\bibname}{\leftline{References}}}
\usepackage[numbers]{natbib}
\begin{document}
\mainmatter         
\title{Title}
\titlerunning{Title}
\author{Blinded}
\maketitle
\section{Introduction}\label{sec:introduction}
\citet{Hogan2009}
\bibliographystyle{splncs03}
\bibliography{refs.bib}
\end{document}

参考文献:

@article{Hogan2009,
author = {Hogan, Hulk},
journal = {Int. J. of Wrestling},
number = {1},
pages = {12--50},
title = {{Wrestling III}},
volume = {1},
year = {2009}
}

相关内容