在我的参考书目中,我想删除参考文献之间的换行符(现在就像图中一样)。我使用的参考书目样式是
\bibliographystyle{inc/splncsnat}
数字
任何建议都将不胜感激。谢谢。
答案1
好吧,我解决了这个问题,只需在我的设置中添加以下内容。确保您有纳特比布样式文件。谢谢。
\usepackage{natbib}
\setlength{\bibsep}{0.0pt}
答案2
您可以尝试以下操作:
\documentclass[12pt]{article}
\usepackage{lipsum}
% ADD THE FOLLOWING COUPLE LINES INTO YOUR PREAMBLE
\let\OLDthebibliography\thebibliography
\renewcommand\thebibliography[1]{
\OLDthebibliography{#1}
\setlength{\parskip}{0pt}
\setlength{\itemsep}{0pt plus 0.3ex}
}
\begin{document}
\begin{thebibliography}{99}
\bibitem{a} \lipsum[1]
\bibitem{b} \lipsum[4]
\end{thebibliography}
\end{document}
正如这里提到的:压缩书目条目之间的间距
当您使用时biblatex
,您可以使用以下命令:
\setlength\bibitemsep{0pt}
\printbibliography
正如这里提到的:使用 biblatex 减少参考书目中的间距