Aller au contenu

How to Use URLs in BibTeX Entries

Ce contenu n’est pas encore disponible dans votre langue.

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:

Vous avez besoin d'une solution simple pour gérer vos entrées BibTeX? Découvrez CiteDrive!

  • Gestion de références moderne et basée sur le web
  • Collaborez et partagez avec d'autres chercheurs
  • Intégration avec Overleaf
  • Support complet de BibTeX/BibLaTeX
  • Enregistrez des articles et des sites web directement depuis votre navigateur
  • Recherchez de nouveaux articles dans une base de données de dizaines de millions de références
Essayez CiteDrive ► Regarder la démo

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!