Curricula Vitae / Résumés ⇒ Change the link color for urls
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Change the link color for urls
\usepackage[dvipdfm,colorlinks,pdfstartview=FitH,citecolor=blue,linkcolor=blue,urlcolor=blue]{hyperref}
However, it reports that
option clash for hyperref package
How to solve this problem? Thanks!
idioteque
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Change the link color for urls
The problem is that hyperref is already being defined and called in moderncv.cls.
To color links blue, go into moderncv.cls and find the \hypersetup{ line and add:
colorlinks,
linkcolor=blue,
urlcolor=blue,
after it.
Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Change the link color for urls
Problem solved! Thanks a lot!
idioteque