定理标题中引用时不需要空格

定理标题中引用时不需要空格

有人可以给我提供线索,为什么以下最小工作示例会产生输出

定理 1 ([1])。乱数假文。

代替

定理 1 ([1])。乱数假文。

(请注意引用之前的不需要的空格)。

\documentclass[11pt]{article}

\usepackage{amsmath}
\usepackage{cite}
\usepackage{amsthm}

\newtheorem{theorem}{Theorem}
    \newtheorem{lemma}[theorem]{Lemma}



\begin{document}

\title{Title}
\maketitle

\begin{theorem}[\cite{articlexy}]
    Lorem ipsum.
\end{theorem}


\begin{lemma}[Text]
    Bla bla.
\end{lemma}


\bibliography{refArticlesAndBooks}

\end{document}

bib 文件如下:

@article{articlexy,
 author = {Author Name},
 title = {Title of Paper},
 journal = {Journal},
 volume = {837},
 number = {6},
 year = {2003},
 pages = {255\nobreakdash--354},
 }

感谢您的帮助。

相关内容