如何添加链接作为参考?

如何添加链接作为参考?

我正在尝试将以下链接添加到我的参考文献中。但是当我按如下所示添加它时,LaTeX 生成以下错误:

\bibitem{link_latlng_00}  {\em https://gcps.desire2learn.com/d2l/lor/viewer/viewfile.d2lfile/6605/7951/global_latitude_longitude.gif}.

**errors**

! Missing } inserted.
! Extra }, or forgotten $.
! Missing $ inserted.

请告诉我如何修复这个错误。

答案1

URL 字符串包含_(下划线) 字符,LaTeX 将其解释为起始下标材料。而且,由于您不在数学模式中,因此会生成有关缺少$符号的错误消息。

为了正确排版 URL 字符串,我建议您url使用选项加载包spaces并将hyphens条目写为

\bibitem{link_latlng_00}  \url{https://gcps.desire2learn.com/d2l/lor/viewer/viewfile.d2lfile/6605/7951/global_latitude_longitude.gif}

如果也加载了 hyperref 包,则这种方法应该会产生一个可点击的 gif 文件链接。


完整的 MWE (最小工作示例):

\documentclass{article}
\usepackage[spaces,hyphens]{url}
\usepackage[colorlinks,allcolors=blue]{hyperref} %% optional
\begin{document}

\cite{link_latlng_00}

\begin{thebibliography}{1}

\bibitem{link_latlng_00}  \url{https://gcps.desire2learn.com/d2l/lor/viewer/viewfile.d2lfile/6605/7951/global_latitude_longitude.gif}

\end{thebibliography}
\end{document} 

相关内容