LaTeX 样式文件中徽标的超链接

LaTeX 样式文件中徽标的超链接

我有一个 LaTeX 文档,我想添加一个超链接,指向一个日志,该日志在我的 LaTeX 文档中包含以下命令

\pgfdeclareimage[height=.5\@tempdimb]{logo}{mylogo}%
\logo{\pgfuseimage{logo}}%

我想要添加的超链接可以这样写:

\href{http://google.com}

你能帮帮我吗?我该怎么做?

答案1

一般语法是\href{website}{text displayed in the pdf}。除了文本,您还可以包含图像等。

\documentclass{beamer}

\logo{\href{www.google.com}{\includegraphics[height=3cm]{example-image}}}

\begin{document}

\begin{frame}
    \titlepage
\end{frame} 

\end{document}

就您而言,您可能想要\logo{\href{www.google.com}{\pgfuseimage{logo}}}

相关内容