changeset 54:da11c1b9e8cb

splitted bib into 2 parts: books and web (using multibib)
author meillo@marmaro.de
date Wed, 15 Oct 2008 22:53:19 +0200 (2008-10-15)
parents 7a453fce0961
children 56fd50f9bbf3
files thesis/Makefile thesis/bib/thesis.bib thesis/bib/websites.bib thesis/thesis.sty thesis/thesis.tex
diffstat 5 files changed, 61 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/thesis/Makefile	Tue Oct 14 22:19:54 2008 +0200
+++ b/thesis/Makefile	Wed Oct 15 22:53:19 2008 +0200
@@ -2,6 +2,8 @@
 
 DOC=thesis
 
+all: pdf
+
 pdf:
 	latexmk -pdf $(DOC)
 
@@ -13,5 +15,6 @@
 
 clean:
 	latexmk -c
+	rm web.*
 
 .PHONY: pdf view watch clean
--- a/thesis/bib/thesis.bib	Tue Oct 14 22:19:54 2008 +0200
+++ b/thesis/bib/thesis.bib	Wed Oct 15 22:53:19 2008 +0200
@@ -1,4 +1,4 @@
-@book{brooks95,
+@book{mmm,
 	author    = "Brooks, Jr., Frederick P.",
 	title     = "The mythical man-month: essays on software engineering",
 	year      = "1995",
@@ -26,7 +26,7 @@
 	publisher = "Addison-Wesley"
 }
 
-@book{cprog,
+@book{k&r,
 	author = "Brian W. Kernighan and Dennis M. Ritchie",
 	title = "The C Programming Language",
 	edition = "Second",
@@ -39,9 +39,20 @@
 	title = "The Cathedral \& the Bazaar",
 	year = "1999",
 	publisher = "O'Reilly Media",
-	note = "ISBN: 1-56592-724-9. Also available at \small\url{http://catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/} (2008-10-14)",
+	note = "ISBN: 1-56592-724-9. Also available at {\small\url{http://catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/} (2008-10-14)}",
 }
 
+@book{sendmail,
+	author = "Bryan Costales and Eric Allman",
+	title = "sendmail",
+	year = "1997",
+	edition = "Second",
+	publisher = "O'Reilly \& Associates, Inc",
+	note = "ISBN: 1-56592-222-0",
+}
+
+
+
 =====================================
 
 @article{AbedonHymanThomas2003,
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/thesis/bib/websites.bib	Wed Oct 15 22:53:19 2008 +0200
@@ -0,0 +1,35 @@
+@misc{wikipedia:mta,
+	author = "Wikipedia",
+	title = "\emph{Mail transfer agent}",
+	howpublished = "On the Internet: {\small\url{http://en.wikipedia.org/w/index.php?title=Mail_transfer_agent&oldid=238542929} (2008-10-15)}",
+}
+
+@misc{wikipedia:sendmail,
+	author = "Wikipedia",
+	title = "\emph{Sendmail}",
+	howpublished = "On the Internet: {\small\url{http://en.wikipedia.org/w/index.php?title=Sendmail&oldid=244710433} (2008-10-15)}",
+}
+
+@misc{website:techtarget,
+	author = "Whatis.com",
+	title = "\emph{Definition for ``mail server''}",
+	howpublished = "On the Internet: {\small\url{http://searchsoa.techtarget.com/sDefinition/0,,sid26_gci876011,00.html} (2008-10-15)}",
+}
+
+@misc{website:thefreedictionary,
+	author = "The Free Dictionary",
+	title = "\emph{Definition for ``Message Transfer Agent''}",
+	howpublished = "On the Internet: {\small\url{http://encyclopedia2.thefreedictionary.com/Message+Transfer+Agent} (2008-10-15)}",
+}
+
+@misc{website:faqs,
+	author = "FAQs.org",
+	title = "\emph{Definition for ``mail transfer agent''}",
+	howpublished = "On the Internet: {\small\url{http://www.faqs.org/docs/linux_admin/g2999.html} (2008-10-15)}",
+}
+
+@misc{website:freeserve.co.uk,
+	author = "www.kayian.freeserve.co.uk",
+	title = "\emph{Definition for ``mail transfer agent''}",
+	howpublished = "On the Internet: {\small\url{http://www.kayian.freeserve.co.uk/page7.htm} (2008-10-15)}",
+}
--- a/thesis/thesis.sty	Tue Oct 14 22:19:54 2008 +0200
+++ b/thesis/thesis.sty	Wed Oct 15 22:53:19 2008 +0200
@@ -7,6 +7,9 @@
 	\usepackage{makeidx}
 	\makeindex
 
+	\usepackage{multibib}
+	\newcites{web}{References on the Internet}
+
 	\setlength{\parindent}{0em}
 	\setlength{\parskip}{1.0ex plus 1.0ex minus 0.5ex}
 	\setcounter{tocdepth}{3}
--- a/thesis/thesis.tex	Tue Oct 14 22:19:54 2008 +0200
+++ b/thesis/thesis.tex	Wed Oct 15 22:53:19 2008 +0200
@@ -3,7 +3,7 @@
 % @author  markus schnalke <meillo@marmaro.de>
 % @since   2008-09-16
 
-\documentclass[english,a4paper,twoside,openright]{report}
+\documentclass[a4paper,twoside,openright]{report}
 \usepackage{thesis}
 
 \title{diploma thesis about masqmail}
@@ -61,11 +61,14 @@
 
 % bibliography
 \addcontentsline{toc}{chapter}{Bibliography}
-%\bibliographystyle{gerapali}
 \bibliographystyle{alpha}
 \bibliography{bib/thesis}
+\cleardoublepage
+\addcontentsline{toc}{chapter}{References on the Internet}
+\bibliographystyleweb{plain}
+\bibliographyweb{bib/websites}
 
-\clearpage
+\cleardoublepage
 \addcontentsline{toc}{chapter}{Index}
 \printindex
 \end{document}