Pular para o conteúdo

How to Use URLs in BibTeX Entries

Este conteúdo não está disponível em sua língua ainda.

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:

Precisa de uma solução simples para gerir suas entradas BibTeX? Descubra o CiteDrive!

  • Gestão de referências moderna e baseada na web
  • Colabore e compartilhe com colegas pesquisadores
  • Integração com o Overleaf
  • Suporte abrangente para BibTeX/BibLaTeX
  • Salve artigos e sites diretamente do seu navegador
  • Pesquise novos artigos em um banco de dados com dezenas de milhões de referências
Experimente o CiteDrive ► Ver demonstração

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!