在 latex 中的引用中包含等或点

在 latex 中的引用中包含等或点

在使用 bibtex 引用时,有没有办法包含等或点 (...)?我希望我的参考文献如下所示,但不知道该怎么做。

多篇出版物[1,2,3,4,ETC] 或 [1,2,3,4...]

答案1

可选参数\cite可用于添加点。

\documentclass{article}
\begin{document}
Several publications \cite[\dots]{a,b,c}

\newpage

\begin{thebibliography}{99}
\bibitem{a} A.

\bibitem{b} B.

\bibitem{c} C.

\end{thebibliography}
\end{document}

结果

相关内容