在文章参考书目中适合 URL 项目

在文章参考书目中适合 URL 项目

我在参考书目中遇到 URL 问题。添加空格是不合适的,因为 URL 不再有效。你有什么建议吗?我使用了以下代码:

\vspace{2mm}    

\begin{hangparas}{1cm}{1}
Sun, L. \& Widdicks, M. (2016). Why do employees like to be paid with Options?: A multi-period prospect theory approach. \textit{Journal Of Corporate Finance, 38}, 106-125. http://dx.doi.org/10.1016/j.jcorpfin.2016.03.002
\end{hangparas}

\vspace{2mm}    

在此处输入图片描述

答案1

随着超链接包中,您将能够单击 URL,它会立即将您重定向到网站。尽管输入 URL 时行会结束,但这不会影响结果:

\documentclass{article}
\usepackage{hyperref} 
\usepackage{hanging} 
\usepackage[margin=1in]{geometry}

\begin{document}

\begin{hangparas}{1cm}{1} 
Sun, L. \& Widdicks, M. (2016). Why do employees like to be paid with Options?: A multi-period prospect theory approach. \textit{Journal Of Corporate Finance, 38}, 106-125. \url{http://dx.doi.org/10.1016/j.jcorpfin.2016.03.002} 
\end{hangparas}

\end{document}

在此处输入图片描述

相关内容