ConTeXt:插入网站超链接

ConTeXt:插入网站超链接

我需要上下文中 latex 的类似物\href。我需要一个链接,单击该 pdf 查看器时会打开带有其 url 的浏览器。

答案1

以下是基本用法网址

\definecolor[HyperlinkExternal][h=2F66B1]

\setupinteraction[
  state=start,
  color=HyperlinkExternal,
]

\startasciimode
  \useURL
    [search]
    [https://www.google.com/search?q=context%20tex%20urls]
    []
    [\ConTeXt search]
\stopasciimode

\starttext
  Perform a \from[search] for URLs.
\stoptext

\goto{name}[url(http://link.com)]这种方法比在单个位置定义所有超链接更灵活。它还简化了转义。

相关内容