参考文献以 spbasic 样式显示

参考文献以 spbasic 样式显示

我正在使用 spbasic 排版 Springer Journal 论文。参考文献的列出时间不一致。点和空格当作者姓名有下图显示了不一致的情况。

在此处输入图片描述

我在用

\documentclass[referee]{svjour3}

我的问题是如何获得点和空格在作者等(年份)之后的引用格式

答案1

以下是该文件标题的摘录spbasic.bst

%% For use with the natbib package (see below). Default is author-year citations. %%
%%   When citations are numbered, please use \usepackage[numbers]{natbib}.        %%

简而言之,一个必须natbib如果希望正确使用参考书目样式,请加载引文管理包spbasic

如果您希望生成数字样式的引用标注,请确保使用natbib以下选项加载包numbers

\usepackage[numbers]{natbib}

附录:这是一个完整的最小工作示例,它使用了该natbib包。请注意,引用标注是不是在每个格式化的 bib 条目的开头重复。我已突出显示 bib 条目中的引用标注以及格式化的名称块。

在此处输入图片描述

\documentclass[referee]{svjour3}
\begin{filecontents}[overwrite]{mybib.bib}
% see https://dl.acm.org/doi/abs/10.1145/1282040.1282058 and
%     https://dl.acm.org/doi/10.5555/1018435.1021693
@inproceedings{avw:2007, 
author = {Adamo-Villani, Nicoletta and Wright, Kelly},
title = {{SMILE}: An Immersive Learning Game for Deaf and Hearing Children},
year = {2007},
isbn = {9781450318303},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/1282040.1282058},
doi = {10.1145/1282040.1282058},
booktitle = {ACM SIGGRAPH 2007 Educators Program},
pages = {17–es},
keywords = {virtual reality, 3D animation, virtual learning environments, sign language education},
location = {San Diego, California},
series = {SIGGRAPH '07}
}
@inproceedings{avdm:2004,
author = {Adamo-Villani, Nicoletta and Doublestein, John and Martin, Zachary},
title  = {The {MathSigner}: An Interactive Learning Tool for {American Sign Language} {K-3} Mathematics},
year   = {2004},
isbn   = {0769521770},
publisher = {IEEE Computer Society},
address = {USA},
booktitle = {Proceedings of the Information Visualisation, Eighth International Conference},
pages   = {713–716},
numpages = {4},
series  = {IV~'04}
}
\end{filecontents}

\usepackage[T1]{fontenc}
\usepackage[authoryear]{natbib}
\bibliographystyle{spbasic}
\usepackage{microtype} % optional
\usepackage{xurl}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\hyphenation{double-stein}

\begin{document}
\cite{avw:2007}, \cite{avdm:2004}
\bibliography{mybib}
\end{document}

相关内容