如何在 BibTeX 中自动链接标题和 URL?

如何在 BibTeX 中自动链接标题和 URL?

我正在尝试找出一种方法来自动链接 BibTeX 中的标题和 URL,以便标题成为网页的超链接。

目前,我的参考书目条目如下:

@article{
    Author2000,
    author = "Author, Albert A.",
    title = "\href{https://www.mypaper.org}{A Very Inconsequential Paper}",
    journal = "Journal of Inconsequential Results",
    volume = "12",
    pages = "34--56",
    year = "2000",
}

如您所见,我目前已\href{}{}在标题字段中使用了所需的效果。但是,我希望有这样的参考书目条目:

@article{
    Author2000,
    author = "Author, Albert A.",
    title = "A Very Inconsequential Paper",
    journal = "Journal of Inconsequential Results",
    volume = "12",
    pages = "34--56",
    year = "2000",
    url = "https://www.mypaper.org",
}

也就是说,不使用\href{}{},而是使用 url 字段或类似内容的条目。理想情况下,仅使用 LaTeX 和 BibTeX 是否能以这种方式实现相同的效果?

相关内容