See the following MWE:
Code: Select all
\documentclass{article}
\usepackage[noadjust]{cite}
\usepackage{filecontents}
\begin{filecontents*}{test.bib}
@MISC{test1,
title = {Reference test1}
}
@MISC{test2,
title = {Reference test2}
}
@MISC{test3,
title = {Reference test3}
}
\end{filecontents*}
\begin{document}
\section{Test}
\cite{test1,test2}.
\bibliographystyle{unsrt}
\bibliography{test}
\end{document}
\cite{
, the auto-completion will suggest test1, test2 and test3. And for example after I type \cite{test1,
, the auto-completion will no longer work. How do I enable auto-completion when citing more than one reference?