Add bibliographystile examples

This commit is contained in:
Knoch 2019-05-10 20:59:42 +02:00
parent db15dca968
commit b006c6e400
17 changed files with 6954 additions and 15 deletions

View File

@ -18,21 +18,6 @@
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Wie wird das verwendet?</h2>
<p class="fragment">Durch BibTex wird LaTeX um einige Befehle zum Zitieren erweitert:</p>
<ul>
<li class="fragment">Zitieren einer Quelle: <code>\cite{&lt;quelle>}</code></li>
<li class="fragment">Zitieren einer Seite: <code>\cite[S. 15]{&lt;quelle>}</code></li>
<li class="fragment">Verweis auf die genutzte `.bib`-Datei: <code>\bibliography{&lt;.bib-datei>}</code></li>
<li class="fragment">Angabe des genutzten Zitierstils: <br/><code>\bibliographystyle{&lt;zitierstil>}</code></li>
</ul>
</div>
</div>
---
<div class="layout-wide-content">
<div class="layout-content">
<h2>Was ist diese ominöse .bib Datei?</h2>
@ -57,6 +42,53 @@
---
<div class="layout-content-only">
<div class="layout-content">
<h2>Wie wird das verwendet?</h2>
<p>Durch BibTeX wird LaTeX um einige Befehle zum Zitieren erweitert. Außerdem benötigt wird das Paket `natbib`.</p>
<ul>
<li class="fragment">Zitieren einer Quelle: <code>\cite{&lt;quelle>}</code></li>
<li class="fragment">Zitieren einer Seite: <code>\cite[S. 15]{&lt;quelle>}</code></li>
<li class="fragment">Verweis auf die genutzte `.bib`-Datei: <code>\bibliography{&lt;.bib-datei>}</code></li>
<li class="fragment">Angabe des genutzten Zitierstils: <br/><code>\bibliographystyle{&lt;zitierstil>}</code></li>
</ul>
<blockquote class="fragment">Zwei Dinge sind unendlich. Das Universum und die Auswahl an Zitierstilen.« <cite>Unbekannt</cite></blockquote>
</div>
</div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<figure>
<img class="large thin-padding" src="sections/german/14/bibtex-alpha-crop.svg">
<figcaption>Zitieren im Alpha-Zitierstil</figcaption>
</figure>
</div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<figure>
<img class="large thin-padding" src="sections/german/14/bibtex-natdin-crop.svg">
<figcaption>Zitieren im Natdin-Zitierstil</figcaption>
</figure>
</div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<figure>
<img class="large thin-padding" src="sections/german/14/bibtex-apa-crop.svg">
<figcaption>Zitieren im Apa-Zitierstil</figcaption>
</figure>
</div>
---
<div class="layout-preview-only">
<div class="layout-preview">
<img class="large" src="sections/german/14/bamberger_katalog_bibtex.jpg">

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 151 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -0,0 +1,22 @@
\begin{thebibliography}{Haw88}
\bibitem[Fra57]{Frank1957}
Anne Frank.
\newblock {\em Das Tagebuch der Anne Frank}.
\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.,
1957.
\newblock EST: Het Achterhuis (dt.).
\bibitem[Haw88]{Hawking1988}
Stephen~W. Hawking.
\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
Universums}.
\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition, 1988.
\newblock 238 S. : Ill., graph. Darst.
\bibitem[Orw57]{Orwell1957}
George Orwell.
\newblock {\em 1984}.
\newblock Diana-Verl., Konstanz, 1957.
\end{thebibliography}

View File

@ -0,0 +1,46 @@
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: bibtex-alpha.aux
The style file: alpha.bst
Database file #1: collection.bib
You've used 3 entries,
2543 wiz_defined-function locations,
582 strings with 4843 characters,
and the built_in function-call counts, 882 in all, are:
= -- 82
> -- 24
< -- 3
+ -- 6
- -- 6
* -- 47
:= -- 160
add.period$ -- 12
call.type$ -- 3
change.case$ -- 13
chr.to.int$ -- 3
cite$ -- 3
duplicate$ -- 48
empty$ -- 76
format.name$ -- 12
if$ -- 180
int.to.chr$ -- 1
int.to.str$ -- 0
missing$ -- 6
newline$ -- 20
num.names$ -- 9
pop$ -- 19
preamble$ -- 1
purify$ -- 18
quote$ -- 0
skip$ -- 30
stack$ -- 0
substring$ -- 21
swap$ -- 3
text.length$ -- 3
text.prefix$ -- 3
top$ -- 0
type$ -- 12
warning$ -- 0
while$ -- 6
width$ -- 5
write$ -- 47

View File

@ -0,0 +1,13 @@
\documentclass[a4paper, pdftex, 12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{natbib}
\begin{document}
\thispagestyle{empty}
Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{alpha}
\bibliography{collection}
\end{document}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 150 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 150 KiB

View File

@ -0,0 +1,21 @@
\begin{thebibliography}{}
\bibitem[\protect\astroncite{Frank}{1957}]{Frank1957}
Frank, A. (1957).
\newblock {\em Das Tagebuch der Anne Frank}.
\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.
\newblock EST: Het Achterhuis (dt.).
\bibitem[\protect\astroncite{Hawking}{1988}]{Hawking1988}
Hawking, S.~W. (1988).
\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
Universums}.
\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition.
\newblock 238 S. : Ill., graph. Darst.
\bibitem[\protect\astroncite{Orwell}{1957}]{Orwell1957}
Orwell, G. (1957).
\newblock {\em 1984}.
\newblock Diana-Verl., Konstanz.
\end{thebibliography}

View File

@ -0,0 +1,46 @@
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: bibtex-apa.aux
The style file: apa.bst
Database file #1: collection.bib
You've used 3 entries,
1940 wiz_defined-function locations,
497 strings with 4090 characters,
and the built_in function-call counts, 901 in all, are:
= -- 88
> -- 21
< -- 3
+ -- 6
- -- 6
* -- 63
:= -- 171
add.period$ -- 12
call.type$ -- 3
change.case$ -- 16
chr.to.int$ -- 3
cite$ -- 3
duplicate$ -- 42
empty$ -- 70
format.name$ -- 9
if$ -- 176
int.to.chr$ -- 1
int.to.str$ -- 0
missing$ -- 6
newline$ -- 20
num.names$ -- 9
pop$ -- 16
preamble$ -- 1
purify$ -- 18
quote$ -- 0
skip$ -- 31
stack$ -- 0
substring$ -- 36
swap$ -- 6
text.length$ -- 0
text.prefix$ -- 0
top$ -- 0
type$ -- 12
warning$ -- 0
while$ -- 6
width$ -- 0
write$ -- 47

View File

@ -0,0 +1,13 @@
\documentclass[a4paper, pdftex, 12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{natbib}
\begin{document}
\thispagestyle{empty}
Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{apa}
\bibliography{collection}
\end{document}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 169 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 169 KiB

View File

@ -0,0 +1,36 @@
\begin{thebibliography}{3}
% this bibliography is generated by nd24.bst [3.0c2] from 2005-12-21
\providecommand{\natexlab}[1]{#1}
\providecommand{\url}[1]{\texttt{#1}}
\makeatletter
\newcommand{\dinatlabel}[1]%
{\ifNAT@numbers\else\NAT@biblabelnum{#1}\fi}
\makeatother
\expandafter\ifx\csname urlstyle\endcsname\relax
\providecommand{\doi}[1]{doi: #1}\else
\providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
\bibitem[Frank(1957)]{Frank1957}
\dinatlabel{Frank 1957} \textsc{Frank}, Anne:
\newblock \emph{Das Tagebuch der Anne Frank}.
\newblock Frankfurt/M. ; Frankfurt/M. : Fischer ; Fischer, 1957
(Fischer-B{\"u}cherei). --
\newblock EST: Het Achterhuis (dt.)
\bibitem[Hawking(1988)]{Hawking1988}
\dinatlabel{Hawking 1988} \textsc{Hawking}, Stephen~W.:
\newblock \emph{Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
Universums}.
\newblock 23.-42. Tsd.
\newblock Reinbek bei Hamburg : Rowohlt, 1988. --
\newblock ISBN 3498028847. --
\newblock 238 S. : Ill., graph. Darst.
\bibitem[Orwell(1957)]{Orwell1957}
\dinatlabel{Orwell 1957} \textsc{Orwell}, George:
\newblock \emph{1984}.
\newblock Konstanz : Diana-Verl., 1957
\end{thebibliography}

View File

@ -0,0 +1,51 @@
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: bibtex-natdin.aux
The style file: natdin.bst
Reallocated singl_function (elt_size=4) to 100 items from 50.
Reallocated singl_function (elt_size=4) to 100 items from 50.
Reallocated wiz_functions (elt_size=4) to 6000 items from 3000.
Reallocated singl_function (elt_size=4) to 100 items from 50.
Reallocated singl_function (elt_size=4) to 100 items from 50.
Database file #1: collection.bib
You've used 3 entries,
4728 wiz_defined-function locations,
907 strings with 6720 characters,
and the built_in function-call counts, 1562 in all, are:
= -- 149
> -- 30
< -- 30
+ -- 37
- -- 10
* -- 104
:= -- 282
add.period$ -- 4
call.type$ -- 3
change.case$ -- 12
chr.to.int$ -- 3
cite$ -- 3
duplicate$ -- 55
empty$ -- 134
format.name$ -- 18
if$ -- 311
int.to.chr$ -- 1
int.to.str$ -- 1
missing$ -- 12
newline$ -- 34
num.names$ -- 12
pop$ -- 19
preamble$ -- 1
purify$ -- 18
quote$ -- 0
skip$ -- 78
stack$ -- 0
substring$ -- 96
swap$ -- 7
text.length$ -- 4
text.prefix$ -- 0
top$ -- 0
type$ -- 24
warning$ -- 0
while$ -- 13
width$ -- 0
write$ -- 57

View File

@ -0,0 +1,13 @@
\documentclass[a4paper, pdftex, 12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{natbib}
\begin{document}
\thispagestyle{empty}
Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{natdin}
\bibliography{collection}
\end{document}

View File

@ -0,0 +1,30 @@
@book{Hawking1988,
author={Hawking, Stephen W.},
title={Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des Universums},
address={Reinbek bei Hamburg},
publisher={Rowohlt},
edition={23.-42. Tsd.},
note={238 S. : Ill., graph. Darst.},
year={1988},
ISBN={3498028847},
keywords={Raum ; Zeit},
keywords={Kosmologie},
}
@book{Orwell1957,
author={Orwell, George},
title={1984},
address={Konstanz},
publisher={Diana-Verl.},
year={1957},
}
@book{Frank1957,
author={Frank, Anne},
title={Das Tagebuch der Anne Frank},
address={Frankfurt/M. ; Frankfurt/M.},
publisher={Fischer ; Fischer},
year={1957},
series={Fischer-B{\"u}cherei},
note={EST: Het Achterhuis (dt.)},
}