How can I use BibTeX to cite a website in LaTeX?
There are several ways to cite a website in LaTeX. In this short answer to the question, we give three, the easiest being BibLaTeX via the CiteDrive browser extension in the last example.
Need a simple solution for managing your BibTeX entries? Explore CiteDrive!
- Web-based, modern reference management
- Collaborate and share with fellow researchers
- Integration with Overleaf
- Comprehensive BibTeX/BibLaTeX support
- Save articles and websites directly from your browser
- Search for new articles from a database of tens of millions of references
Using BibTeX
In BibTeX we use @misc
as a workaround and make use of the note
field to specify the URl and usually an access date. In this example, url
(or hyperref
) is required using usepackage{url}
.
Alternatively, the howpublished
field can be used:
Using BibLaTeX
If you use BibLaTeX, which we recommend, the @online
entry type is inherently supported and works without a further tweak. You can enter the URL and access date in the fields url
and urldate
, respectively.
Using natbib
People frequently inquire about how to cite web pages using natbib. We emphasize that it works in the same way as BibTeX. Natbib is a tool for styling in-text citations, and it depends on BibTeX as a backend.