We are trying to make a bibliography file for the project we are doing, but which type should we use to implement this in a report? (like @book @article)
greets Roel
General ⇒ Bibliography- websites?
-
- Posts: 19
- Joined: Wed Jan 17, 2007 11:42 am
Re: Bibliography- websites?
I don't really get wat u mean but if you are finding about biblography databases where you could copy and paste it into ur bib file then go to the following websites
http://liinwww.ira.uka.de/bibliography/index.html
http://www.math.utah.edu:8080/pub/tex/b ... table.html
http://liinwww.ira.uka.de/bibliography/index.html
http://www.math.utah.edu:8080/pub/tex/b ... table.html
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
Re: Bibliography- websites?
You should use either @article if you are referencing an article, and @book if you are referencing a book.
If you wish to reference websites in the bibliography entry, I would recommend using the "note" function of BiBTeX.
Some examples (note I used the hyperref package, but you could easily just use \url instead of \href, and if possible I would recommend crossreferencing using DOI number):
@article{article_label,
author = { Firstname I. {Surname} },
title = "Title of article",
journal = {Journal of Publication},
year = 2007,
month = may,
volume = 1,
issue = 1,
pages = {1-2},
note = "Available: \href{http://dx.doi.org/10.1111/1.111111}{doi:10.1111/1.111111}"
};
@book{book_label,
author = { Firstname I. {Surname} },
title = "Title of Book",
edition = "1",
publisher = "Publishing House",
address = "Address of Publishing House",
year = "2007",
note = "Available: \href{http://www.webreference.com}{webreference.com}"
};
Patrick.
If you wish to reference websites in the bibliography entry, I would recommend using the "note" function of BiBTeX.
Some examples (note I used the hyperref package, but you could easily just use \url instead of \href, and if possible I would recommend crossreferencing using DOI number):
@article{article_label,
author = { Firstname I. {Surname} },
title = "Title of article",
journal = {Journal of Publication},
year = 2007,
month = may,
volume = 1,
issue = 1,
pages = {1-2},
note = "Available: \href{http://dx.doi.org/10.1111/1.111111}{doi:10.1111/1.111111}"
};
@book{book_label,
author = { Firstname I. {Surname} },
title = "Title of Book",
edition = "1",
publisher = "Publishing House",
address = "Address of Publishing House",
year = "2007",
note = "Available: \href{http://www.webreference.com}{webreference.com}"
};
Patrick.