参考书目中的间距

参考书目中的间距

我想寻求有关编写参考书目的帮助。在参考书目部分,Latex 编译器在单词之间留有很大的间隙。如果有人能告诉我如何消除它们,我将不胜感激。

代码:

\begin{thebibliography}{99}
    \bibitem{tesla}
    \emph{Model S $\mid$ Tesla}.Tesla [online].[cit. 2017-04-29]. Dostupné z: https://www.tesla.com/models

\end{thebibliography}

在此处输入图片描述

答案1

\documentclass{article}

\usepackage[hyphens]{url}

\begin{document}

\begin{thebibliography}{99}
    \bibitem{tesla}
    \emph{Model S $\mid$ Tesla}.Tesla [online].[cit. 2017-04-29]. Dostupné z: \url{https://www.tesla.com/models}

\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容