Is it possible to make the below url look more like a word/excel link?
Here is a small latex example:
\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
urlcolor=blue
}
\urlstyle{same}
\begin{document}
Url: \url{https://stackexchange.com/}
\end{document}
The result is:
I would like something, which looks like:
Any idea how to do that?
Update
I came by this solution, which is very close to what I want however it changes the font for the URL, which is not desired:
\documentclass{article}
\usepackage{xcolor}
\usepackage[normalem]{ulem}
\usepackage{hyperref}
\hypersetup{colorlinks,urlcolor=blue}
\makeatletter
\DeclareUrlCommand\ULurl@@{
\def\UrlFont{\ttfamily\color{blue}}
\def\UrlLeft{\uline\bgroup}
\def\UrlRight{\egroup}}
\def\ULurl@#1{\hyper@linkurl{\ULurl@@{#1}}{#1}}
\DeclareRobustCommand*\ULurl{\hyper@normalise\ULurl@}
\makeatother
\begin{document}
Url: \ULurl{https://stackexchange.com/}
\end{document}




linkbordercolorto work and I'm also looking for a lighter blue, but not 'cyan'. – User123456789 Oct 29 '20 at 20:18xcolorpackage. do some research on the topic. – naphaneal Oct 30 '20 at 18:56