General ⇒ Bibliography- websites?
Bibliography- websites?
greets Roel
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
-
- Posts: 19
- Joined: Wed Jan 17, 2007 11:42 am
Re: Bibliography- websites?
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?
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.