From 9d6fcbc48f364322f1750ac471fee6522e1eca5b Mon Sep 17 00:00:00 2001 From: Erik Roemmelt Date: Sun, 17 Feb 2019 15:10:14 +0100 Subject: [PATCH] Add Examples .bib format --- latex-files/document.bib | 71 +++++++++++++++++++++++++++++++++++++++- latex-files/document.tex | 5 +-- 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/latex-files/document.bib b/latex-files/document.bib index 6e344fb..8407990 100644 --- a/latex-files/document.bib +++ b/latex-files/document.bib @@ -4,5 +4,74 @@ month = {01}, year = {1990}, url = {http://www.google.com}, - appendum = {Zuletzt besucht am 01.01.1213} + note = {Zuletzt besucht am 01.01.1213} +} + +@article{einstein, + author = {Albert Einstein}, + title = {Zur Elektrodynamik bewegter K{\"o}rper. (German) + [{On} the electrodynamics of moving bodies]}, + journal = {Annalen der Physik}, + volume = {322}, + number = {10}, + pages = {891--921}, + year = {1905}, + DOI = {http://dx.doi.org/10.1002/andp.19053221004}, + note = {Text} +} + +@book{dirac, + title = {The Principles of Quantum Mechanics}, + author = {Paul Adrien Maurice Dirac}, + isbn = {9780198520115}, + series = {International series of monographs on physics}, + year = {1981}, + publisher = {Clarendon Press}, + note = {physics} +} + +@book{latexcompanion, + author = {Michel Goossens and Frank Mittelbach and Alexander Samarin}, + title = {The \LaTeX\ Companion}, + year = {1993}, + publisher = {Addison-Wesley}, + address = {Reading, Massachusetts}, + note = {latex} +} + +@online{knuthwebsite, + author = {Donald Knuth}, + title = {Knuth: Computers and Typesetting}, + url = {http://www-cs-faculty.stanford.edu/~uno/abcde.html}, + note = {latex,knuth} +} + +@inbook{knuth-fa, + author = {Donald E. Knuth}, + title = {Fundamental Algorithms}, + publisher = {Addison-Wesley}, + year = {1973}, + chapter = {1.2}, + note = {knuth,programming} +} + +@book{knuth-acp, + author = {Donald E. Knuth}, + publisher = {Addison-Wesley}, + title = {The Art of Computer Programming}, + series = {Four volumes}, + year = {1968}, + note = {Seven volumes planned}, + note = {knuth,programming} +} + +@article{ctan, + author = {George D. Greenwade}, + title = {The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})}, + year = {1993}, + journal = {TUGBoat}, + volume = {14}, + number = {3}, + pages = {342--351}, + note = {latex} } diff --git a/latex-files/document.tex b/latex-files/document.tex index f927d40..2f7af5b 100644 --- a/latex-files/document.tex +++ b/latex-files/document.tex @@ -3,6 +3,7 @@ % --- \documentclass[12pt]{article} \usepackage{defaultPreamble} +\addbibresource{document.bib} %\bibfilename{document.bib} % --- @@ -89,7 +90,7 @@ asd % Literaturverzeichnis \newpage % Seitenumbruch vor Literaturverzeichnis -%\nocite{*} % Gebe alle Inhalte der *.bib Datei zum Druck frei. -%\printbib % Drucke die freigegebenen Inhalte ins Literaturverzeichnis. +\nocite{*} % Gebe alle Inhalte der *.bib Datei zum Druck frei. +\printbib % Drucke die freigegebenen Inhalte ins Literaturverzeichnis. \end{document}