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.
BibTeXエントリーを管理する簡単なソリューションが必要ですか?CiteDriveをご覧ください!
- ウェブベースでモダンな参照管理
- 研究者同士での共同作業と共有
- Overleafとの統合
- BibTeX/BibLaTeXの包括的なサポート
- ブラウザから直接記事とウェブサイトを保存
- 数千万もの参照があるデータベースから新しい記事を検索
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.