Bibtex 在包含多个项目的引文中添加空格

Bibtex 在包含多个项目的引文中添加空格

我正在使用iopartLaTeX 类撰写一篇文章。此格式与 BibLaTeX 不兼容,因此我被迫使用 BibTeX 进行引用。

我想在同一引文中放入两个以上的条目,但这样做时间距会很奇怪。以下是一个例子:

我把它放在一个.bib文件里(名为bibexample),

@article{example1,
title={{Example 1}},
author={me},
eprint={123}
} 

@article{example2,
title={{Example 2}},
author={me again},
eprint={456}
} 

并在文档中

\documentclass[11pt]{iopart}
\usepackage{hyperref}
\usepackage{mcite}


\begin{document}
Here is my example as seen in \cite{example1, *example2}
\section*{References}

\bibliographystyle{iopart-num}
\bibliography{bibexample}

\end{document}

最终结果是:

在此处输入图片描述

123如您所见,和之间没有空格me again。我想以适当的方式解决这个问题。我已经看到,如果我将其更改title={{Example 2}}title={{ Example 2}}的问题就解决了,但我想知道是否有适当的方法来解决这个问题。

使用所需的文件iopart可以在这里找到:https://publishingsupport.iopscience.iop.org/questions/latex-template/

使用包iopart-num位于 CTAN 上:https://ctan.org/pkg/iopart-num

任何帮助都将受到赞赏。

相关内容