+1 vote
in General IT Tips by (73.6k points)
I am using "\usepackage{orcidlink}" in a latex document, but it displays a color box around the orcid link. Is there any way to disable the color box?

1 Answer

+3 votes
by (77.8k points)
selected by
 
Best answer

The orcidlink package itself doesn't provide direct options for controlling the link's appearance. However, since orcidlink internally uses the hyperref package, you can control the link appearance using hyperref options.

You need to add "\usepackage[hidelinks]{hyperref}" before "\usepackage{orcidlink}" to disable the colored box around the orcid link.

\usepackage[hidelinks]{hyperref}

\usepackage{orcidlink}

Related questions

+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer

...