我不太在意我的 bibtex 风格,这就是我现在正在使用的 -
\bibliographystyle{unsrt}
\bibliography{report.bib}
report.bib 的内容如下:
@misc{opencl,
author = "Khronos Group",
title = "\textit{The Open Standard for Parallel Programming of Heterogeneous Systems}",
url = "https://www.khronos.org/opencl/"
}
@misc{thrust,
author = "NVIDIA",
title = "\textit{Thrust, the CUDA C++ template library}",
url = "https://docs.nvidia.com/cuda/thrust/index.html"
}
主要问题是尝试在“参考文献”部分显示 URL。我尝试通过将 URL 附加到标题字段来解决这个问题,但我注意到一些奇怪的事情。当参考文献延伸到下一行时,不必要的空格会被添加到该行 -
但如果引用与一行对齐 -
间距正确。
我曾有一个类似问题之前使用 xurl 包解决了这个问题,但我不确定这与这里有何关系。