Browse Source

Add Examples .bib format

pull/1/head
Erik Römmelt 5 years ago
parent
commit
9d6fcbc48f
2 changed files with 73 additions and 3 deletions
  1. 70
    1
      latex-files/document.bib
  2. 3
    2
      latex-files/document.tex

+ 70
- 1
latex-files/document.bib View File

@@ -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}
}

+ 3
- 2
latex-files/document.tex View File

@@ -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}

Loading…
Cancel
Save