简体   繁体   中英

How to add a hyperlink in overleaf?

I have created my resume using overleaf.com. The topmost part of the resume is shown in the image. Can anyone please tell me how I can add a hyperlink to my mail ID and my LinkedIn profile using overleaf.com.

[ 我的简历[1]

You should try the hypperref package.

It allows to embed hyperlinks.

You can find documentation here http://en.wikibooks.org/wiki/LaTeX/Hyperlinks but there are essentially two important commands

\\href{url}{text} makes text clickable and creates a link to url .

\\url={url} inserts a clickable url

Here is an example use:

\documentclass{article}
\usepackage{hyperref}
\begin{document}
You can have a look at \href{http://my.site.com}{my site} or contact me on 
\url{https://www.linkedin.com/my-profile}. 
\end{document}

and the output

在此处输入图片说明

Link appearance can be customized.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM