参考链接 ShareLaTeX

参考链接 ShareLaTeX

我用它来引用参考文献:

\cite{art1}

并声明:

\renewcommand{\bibname}{References}
\addcontentsline{toc}{chapter}{References} \bibliographystyle{unsrt}
\bibliography{refs}


\usepackage{filecontents}
\begin{filecontents*}
@ARTICLE{art1,
  author = {Prof C Sam Charles Devanand},
  title = {Importance of Electronic Document/Information Management Systems
in Modern Architectural, Engineering and Construction Projects},
  year = {2002},
}
\end{filecontents*}

我如何放置一个超链接,以便单击[1]并转到如下页面:

[1] Importance of Electronic Document/Information Management Systems in Modern Architectural 2002, Prof C Sam Charles Devanand

答案1

您可以添加以下选项,该选项要求您加载包hyperref

\hypersetup{
    backref=true
}

您还可以添加以下颜色选项:

citecolor={...},
linkcolor={...}, 
urlcolor={...},

相关内容