我正在尝试包含一个带有标签的 URL,如下所示:谷歌 我正在写这个
\hypperef[mylabel]{myurl}
或这个
\url[mylabel]{myurl}
编译器报错,我做错了什么?我正在使用两个必需的包
答案1
您只需要自定义格式hyperref
用途。例如:
\documentclass{article}
\usepackage[colorlinks=true,urlcolor=blue]{hyperref}
\begin{document}
\href{http://google.ru/}{GOOGLE}
\end{document}