texstudio 内联文本引用错误

texstudio 内联文本引用错误
\begin{thebibliography}{999}
    % Reference 1
    \bibitem {ref-73}   Huang, G.; Liu, Z.; Van Der Maaten, L.; Weinberger, K.Q.     Densely connected convolutional networks.   In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition 2017, Honolulu, HI, USA, 21--26 July 2017; pp 4700--4708.

在文中引用此参考文献时

caption. Similarly,\cite{ref-73} used the

它显示为,

在此处输入图片描述

我期待着

Similarly,[73] used the

我怎样才能做到这一点,

乳胶代码

\documentclass[twoside]

\usepackage{overpic}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{verbatim} 
\usepackage{algpseudocode}
\usepackage{cases}
\newcolumntype{L}{>{\RaggedRight\hspace{0pt}}X} 
\usepackage{ulem}
\usepackage{soul,color}
\usepackage{caption}
\captionsetup[figure]{font=small}
\usepackage{acro}
\usepackage{pgfplots}

\begin{document}
\normalem
\setcounter{blankpages}{0}
\include{abstracts/abstract}

\tableofcontents

\let\origaddvspace\addvspace
\renewcommand{\addvspace}[1]{}
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Figures}

\listoffigures
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Tables}

\listoftables
\renewcommand{\addvspace}[1]{\origaddvspace{#1}}

\include{chapters/Chapter1} 
\include{chapters/Chapter2}
\include{chapters/Chapter3}
\include{chapters/Chapter4}    
\include{chapters/Chapter5}
\include{chapters/Conclusion}

\end{document}

相关内容