Skip to content

How to Use URLs in BibTeX Entries

This content is not available in your language yet.

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:

Trenger du en enkel løsning for håndtering av dine BibTeX-oppføringer? Utforsk CiteDrive!

  • Nettbasert, moderne referansehåndtering
  • Samarbeid og del med forskerkolleger
  • Integrasjon med Overleaf
  • Omfattende støtte for BibTeX/BibLaTeX
  • Lagre artikler og nettsteder direkte fra nettleseren din
  • Søk etter nye artikler i en database med titalls millioner av referanser
Prøv CiteDrive ► Se demo

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!