Quero mostrar o texto do link (por exemplo, googlescholar/user.com) como um hiperlink, lado a lado com um ícone (figura). Usei o método abaixo, mas mostra apenas uma figura ou um texto. Posso alterar esta abordagem para incluir ambos ou se existe um método melhor?
\documentclass{article}
\usepackage{hyperref,graphicx}
\begin{document}
\href{http://www.googlescholar.com}{\includegraphics[width=5cm]
{googlescholar}}
\end{document}
Uma solução sugerida por @John Kormylo dá esses resultados. Preciso que o texto esteja no lado direito do ícone.
Responder1
Eu não tinha certeza do que você estava tentando alcançar.
\documentclass{article}
\usepackage[export]{adjustbox}% for valign
\usepackage{hyperref,graphicx}
\begin{document}
\advance\parskip by \baselineskip
\href{http://www.googlescholar.com}{\includegraphics[height=\baselineskip, valign=t]
{example-image}} \url{http://www.googlescholar.com}% two separate links
\href{http://www.googlescholar.com}{\includegraphics[height=\baselineskip, valign=t]
{example-image} \nolinkurl{http://www.googlescholar.com}}% single link
\includegraphics[height=\baselineskip, valign=t]{example-image} \url{http://www.googlescholar.com}% icon not linked
\href{http://www.googlescholar.com}{\includegraphics[height=\baselineskip, valign=t]
{example-image}} \nolinkurl{http://www.googlescholar.com}% url not linked
\end{document}