Přeskočit na obsah

How to Use URLs in BibTeX Entries

Tento obsah zatím není dostupný ve vašem jazyce.

If you’re using BibTeX to create bibliographies for your research papers, you may have wondered how to include URLs in your entries.

The URL field type is not yet formally supported in BibTeX, although it was planned for version 1.0 by Oren Patashnik. Despite this, the debate regarding this version and its intentions dates back to Patashnik’s paper from 2003, which is gradually being replaced by Biber-backed biblatex.

Therefore, it is likely that you will need to use one of the following workarounds, for example, when citing websites:

Potřebujete jednoduché řešení pro správu vašich záznamů BibTeX? Objekvujte CiteDrive!

  • Webová, moderní správa referencí
  • Spolupracujte a sdílejte s kolegy výzkumníky
  • Integrace s Overleaf
  • Komplexní podpora BibTeX/BibLaTeX
  • Ukládejte články a webové stránky přímo z vašeho prohlížeče
  • Vyhledávejte nové články v databázi desítek milionů referencí
Vyzkoušejte CiteDrive ► Sledovat ukázku

Use the note field type:

@misc{...,
howpublished = "\url{http://...}"
}

Use the howpublished field type:

@misc{...,
note = "Available from \url{http://...}"
}

Use biblatex and its built-in URL field type:

@online{...,
url = {http://...}
}

If you choose biblatex, you will need to use Biber as your backend instead of BibTeX. If you want to know more about biblatex and Biber, read our getting started guide. If you have any questions or comments, please let us know. We hope this helped!