Website not appearing in BibTeX bibliography entry

  • Thread starter Thread starter NoobixCube
  • Start date Start date
  • Tags Tags
    Bibtex Websites
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 77K views
NoobixCube
Messages
154
Reaction score
0
I am trying to cite a website using Bibtex.
I have the following in my preamble
\usepackage{url}

and in my .bib file I have

@article{
exoplanetwebsite,
Author = {Jean Schneider},
Title = {The Extrasolar Planets Encyclopaedia},
Publisher = {\url{http://exoplanet.eu/catalog.php}} }


The Author and Title show up in the PDF bibliography but not the website. Any thoughts?
 
Last edited by a moderator:
Physics news on Phys.org
'publisher' isn't a field name for an 'article' entry: http://www.image.ufl.edu/help/latex/entry_bibtex.shtml
 
Last edited by a moderator:
Cool thanks, might got for the misc entry

@misc
Use this type when nothing else fits. Required fields: none. Optional fields: author, title, howpublished, month, year, note.
 
Yeah it worked sweet as a nut

@misc{
exoplanetwebsite,
Author = {Jean Schneider},
Title = {The Extrasolar Planets Encyclopaedia},
howpublished = {\url{http://exoplanet.eu/catalog.php}} }
 
Last edited by a moderator: