我一直在尝试修改参考书目中的单词间距,但无法正常工作。我一直在应用此帖子中的答案参考书目中的单词之间的间隙关于\usepackage[hyphens]{url}
在序言中添加但我仍然得到一个看起来很尴尬的参考书目(见下图)。
第三条和最后一条参考书目条目看起来都很奇怪。尤其是第三条。这似乎与我使用 Url 有关。以下是一些 bibtex“代码”(不知道正确的术语):
@Article{barnombud2018,
author = {Barnombudsmannen},
title = {\textit{utanförskap, våld och kärlek till orten}},
year = {2018},
note = {{ \url{https://www.barnombudsmannen.se/barnombudsmannen/publikationer/arsrapporter/utanforskap-vald-och-karlek-till-orten-2018/}}},
}
答案1
问题是 URL 通常只能在少数地方中断。为了允许更多可能的中断点,从而改善参考书目的布局,请添加
\usepackage{xurl}
到您的文档中。
一个例子(我确实猜过围兜的样式,用你实际使用的样式替换它)
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Article{barnombud2018,
author = {Barnombudsmannen},
title = {\textit{utanförskap, våld och kärlek till orten}},
year = {2018},
note = {{\url{https://www.barnombudsmannen.se/barnombudsmannen/publikationer/arsrapporter/utanforskap-vald-och-karlek-till-orten-2018/}}},
}
\end{filecontents*}
\usepackage{natbib}
\usepackage[hyphens]{url}
\usepackage{xurl}
\begin{document}
\cite{barnombud2018}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}