latex - 仅将 image-link 周围的淡蓝色框移除到特定位置
latex - Remove pale blu box around image-link only to a specific position
我想对 Latex 的 hyperref
包提出一个问题。我用公司的标志写报告,我想在公司的官方网站上添加一个隐含的link,这样如果有人点击这个标志就可以打开官方网页。问题是这会生成一个特别难看的坏淡蓝色框,因此我想将其删除。
我能够通过更改规格上的颜色(并设置白色,也许还有一种方法可以删除)来删除外部 link 上的所有框,但我试图仅更改此特定 link 而不是所有其他人都介绍了文档的其他部分。
latex代码部分以下:
\documentclass[11pt]{article}
\usepackage[italian]{babel}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{figure}[h!]
\vspace{-1 cm}
\flushleft\hspace{-1.5 cm}
\href{https://www.link.com/}{\includegraphics[height=1.5cm, keepaspectratio]{LOGO1.jpg}}
%\caption{Caption}\label{fig:logo}
\end{figure}
\end{document}
有人知道这样做的特殊技巧吗?预先感谢您的帮助。
您可以在本地更改 hyperref 设置:
\documentclass[11pt]{article}
\usepackage[italian]{babel}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\begin{document}
\begin{figure}[h!]
\vspace{-1 cm}
\flushleft\hspace{-1.5 cm}
{\hypersetup{hidelinks}\href{https://www.link.com/}{\includegraphics[height=1.5cm, keepaspectratio]{example-image-duck}}}
%\caption{Caption}\label{fig:logo}
\end{figure}
\end{document}
我想对 Latex 的 hyperref
包提出一个问题。我用公司的标志写报告,我想在公司的官方网站上添加一个隐含的link,这样如果有人点击这个标志就可以打开官方网页。问题是这会生成一个特别难看的坏淡蓝色框,因此我想将其删除。
我能够通过更改规格上的颜色(并设置白色,也许还有一种方法可以删除)来删除外部 link 上的所有框,但我试图仅更改此特定 link 而不是所有其他人都介绍了文档的其他部分。
latex代码部分以下:
\documentclass[11pt]{article}
\usepackage[italian]{babel}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{figure}[h!]
\vspace{-1 cm}
\flushleft\hspace{-1.5 cm}
\href{https://www.link.com/}{\includegraphics[height=1.5cm, keepaspectratio]{LOGO1.jpg}}
%\caption{Caption}\label{fig:logo}
\end{figure}
\end{document}
有人知道这样做的特殊技巧吗?预先感谢您的帮助。
您可以在本地更改 hyperref 设置:
\documentclass[11pt]{article}
\usepackage[italian]{babel}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\begin{document}
\begin{figure}[h!]
\vspace{-1 cm}
\flushleft\hspace{-1.5 cm}
{\hypersetup{hidelinks}\href{https://www.link.com/}{\includegraphics[height=1.5cm, keepaspectratio]{example-image-duck}}}
%\caption{Caption}\label{fig:logo}
\end{figure}
\end{document}