Python:PyLaTeX 超链接到 URL

Python: PyLaTeX hyperlink to a URL

我想添加一个带有超链接的文本到我通过 pyLaTeX 生成的文档。在 LaTeX 中,这将通过使用执行:

\href{http://www.sharelatex.com}{Something Linky}

我找到了包含 Marker 对象和 Hyperref 对象的 labelref documentation,但我似乎无法让它工作。

from pylatex import Document, Hyperref

doc = Document()
doc.append("Example text a link should go ")
# i was hoping the hyperlink would work like i'm showing below
doc.append(Hyperref("https://jeltef.github.io/PyLaTeX", "here"))
doc.generate_pdf("Example_document", clean_tex=True)

运行 下面的代码生成了一个没有错误的 pdf 文档。 image of the document produced

虽然我希望 "here" 这个词是一个超链接并以蓝色显示。

这是我的做法。我创建了一个 class 为您提供所需的超链接功能。 GitHub 上也有一个问题,我也贡献了这个。 https://github.com/JelteF/PyLaTeX/issues/264

    from pylatex import Document, Hyperref, Package
    from pylatex.utils import escape_latex, NoEscape

    def hyperlink(url,text):
        text = escape_latex(text)
        return NoEscape(r'\href{' + url + '}{' + text + '}')

    doc = Document()
    doc.packages.append(Package('hyperref'))
    doc.append("Example text a link should go ")
    # i was hoping the hyperlink would work like i'm showing below
    doc.append(hyperlink("https://jeltef.github.io/PyLaTeX", "here"))
    doc.generate_pdf("Example_document", clean_tex=True)