# HG changeset patch # User meillo@marmaro.de # Date 1224103999 -7200 # Node ID da11c1b9e8cb70c05ea2d899c883863e8d9a1a83 # Parent 7a453fce0961c2ed49455015ca21a10dac57c3d4 splitted bib into 2 parts: books and web (using multibib) diff -r 7a453fce0961 -r da11c1b9e8cb thesis/Makefile --- 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 diff -r 7a453fce0961 -r da11c1b9e8cb thesis/bib/thesis.bib --- 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, diff -r 7a453fce0961 -r da11c1b9e8cb thesis/bib/websites.bib --- /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)}", +} diff -r 7a453fce0961 -r da11c1b9e8cb thesis/thesis.sty --- 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} diff -r 7a453fce0961 -r da11c1b9e8cb thesis/thesis.tex --- 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 % @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}