GeneralBibliography- websites?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
phura
Posts: 3
Joined: Tue Apr 24, 2007 4:03 pm

Bibliography- websites?

Post by phura »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
dustbinbear
Posts: 19
Joined: Wed Jan 17, 2007 11:42 am

Re: Bibliography- websites?

Post by dustbinbear »

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
User avatar
pumpkinegan
Posts: 91
Joined: Thu May 03, 2007 10:29 pm

Re: Bibliography- websites?

Post by pumpkinegan »

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.
Post Reply