General ⇒ Bibtex: @misc
Bibtex: @misc
when I use the @misc in my bibliography, some of the entred fields (URL, type, etc.) are not displayed. What's wrong?
Thank you in advance for advice!
Susan
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Bibtex: @misc
welcome to the board!
Please tell us the bibliography style used by you and one example of such a @misc entry.
Stefan
Re: Bibtex: @misc
I use the havard.sty.
Here is one examle, where the URL is not visible:
@misc{DymolaWeb,
title = {xxx Website},
author = {xxx},
URL = {http://www.xxx.com },
year = {cited July 2008} }
For the next example, only Author, title and year are visible:
@misc{example2,
author = {xxx},
institution = {xxx},
title = {xxx},
series = {xxx},
type = {xxx},
year = {xxx} }
Bibtex: @misc
The misc type has no required fields and the following optional fields: author, title, howpublished, month, year, note.
If you want to show additional information, you should consider using a different type.
For your first example, you can load the url package and use something like the following:
Code: Select all
@misc{DymolaWeb,
title = "xxx Website",
author = "xxx",
howpublished = "\url{http://www.xxx.com}",
year = "cited July 2008"
}