0

    \documentclass[a4paper,10pt]{article}
    \usepackage[T1]{fontenc}

    \usepackage{geometry}
    \geometry{left=2cm,right=2cm,top=1.5cm,bottom=1.5cm}

    \usepackage{pifont}
    \usepackage{sectsty}

    \usepackage{graphicx}
    \usepackage{amsmath,amsfonts,amsthm}

    \usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue]{hyperref}

    \frenchspacing
    \sectionfont{%
      \fontfamily{phv}\bfseries
      \sectionrule{0pt}{0pt}{-5pt}{1pt}%
    }
    \pagestyle{empty}

    \begin{document}

    %%%%%%%%%%%%%%%%%% Photo et title %%%%%%%%%%%%%%%%%%%%%%%%%

    \bigskip

    \begin{flushleft}

    \makebox[0pt][l]{%
      \fontfamily{phv}\large
      \begin{tabular}{@{}l@{}}
      \Huge\bfseries Name Name \\[1ex]
      Curriculum Vitae\\ (\today)
      \end{tabular}%
    }
    \hspace*{\fill}%
    \begin{tabular}{@{}c@{}}
      \includegraphics[width=0.15\textwidth]{example-image-9x16}
    \end{tabular}

    \end{flushleft}
\end{document}

I want to add a link to my ORCID account

enter image description here

like the following

enter image description here

Student
  • 1,134
  • 2
  • 9
  • 27

1 Answers1

2

Just like so? I'm using a tikz environment to create the circled text and by changing the hyperref parameters to make the link look white, you can also leave the hyperref parameters clean and modify the text in the tikz implementation of the circled node

\documentclass[a4paper,10pt]{article}
\usepackage[T1]{fontenc}

\usepackage{geometry} \geometry{left=2cm,right=2cm,top=1.5cm,bottom=1.5cm}

\usepackage{pifont} \usepackage{sectsty}

\usepackage{graphicx} \usepackage{amsmath,amsfonts,amsthm}

\usepackage[colorlinks=true,linkcolor=white,urlcolor=white]{hyperref}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{tikz} \newcommand*\circled[1]{\tikz[baseline=(char.base)]{ \node[shape=circle,draw,inner sep=2pt, fill=green, draw=green] (char) {\small #1};}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\frenchspacing \sectionfont{% \fontfamily{phv}\bfseries \sectionrule{0pt}{0pt}{-5pt}{1pt}% } \pagestyle{empty}

\begin{document}

%%%%%%%%%%%%%%%%%% Photo et title %%%%%%%%%%%%%%%%%%%%%%%%%

\bigskip

\begin{flushleft}

\makebox[0pt][l]{% \fontfamily{phv}\large \begin{tabular}{@{}l@{}} \Huge\bfseries Name Name $^{\text{\circled{\href{http://www.overleaf.com}{ID}}}}$ \[1ex] Curriculum Vitae\ (\today) \end{tabular}% } \hspace*{\fill}% \begin{tabular}{@{}c@{}} \includegraphics[width=0.15\textwidth]{example-image-9x16} \end{tabular}

\end{flushleft} \end{document}

enter image description here