[Tex/LaTex] Configure link color in url package

urls

This question discusses configuring link color in Lyx, however the accepted answer (or the question) doesn't address or solve my problem.

If I use this setting, as suggested:

% Enable links
\usepackage{url}
% But I hate pink!
\hypersetup{urlcolor=blue}  % Undefined control sequence \hypersetup

So how does url package handle this? The documentation (googled, may be outdated) doesn't even mention word color…

Best Answer

Try to use this package:

\usepackage{hyperref}

Also, you can check out a detailed example here https://www.overleaf.com/project/5fe24ef7f829ed77be10f39f

Related Question