İçeriğe geç

How to Use URLs in BibTeX Entries

Bu içerik henüz dilinizde mevcut değil.

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:

BibTeX girişlerinizi yönetmek için basit bir çözüm mü arıyorsunuz? CiteDrive'ı Keşfedin!

  • Web tabanlı, modern referans yönetimi
  • Araştırmacı meslektaşlarınızla işbirliği yapın ve paylaşın
  • Overleaf ile entegrasyon
  • Kapsamlı BibTeX/BibLaTeX desteği
  • Makaleleri ve web sitelerini doğrudan tarayıcınızdan kaydedin
  • Milyonlarca referans içeren veritabanından yeni makaleler arayın
CiteDrive'ı Deneyin ► Demo İzle

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!