64 lines
2.0 KiB
Markdown
64 lines
2.0 KiB
Markdown
<div class="layout-content-only">
|
|
<div class="layout-content">
|
|
<h1>Literatur­verwaltung</h1>
|
|
<blockquote>Literatur ist nichts für Bürokraten,<br>sie sollte nicht verwaltet werden,<br>sondern gelesen und gelebt.« <cite>Zarathustra</cite></blockquote>
|
|
</div>
|
|
</div>
|
|
|
|
---
|
|
|
|
<div class="layout-content-only">
|
|
<div class="layout-content">
|
|
<h2>Was brauchen wir dafür?</h2>
|
|
<p class="fragment"><code><strong>BibTex</strong></code> als Schnittstelle zwischen der Literatur und LaTeX</p>
|
|
<p class="fragment"><strong>Bibliographiedatei</strong> (nachfolgend ".bib" Datei) zur Speicherung von Literaturverweisen<p>
|
|
</div>
|
|
</div>
|
|
|
|
---
|
|
|
|
<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"><code>\cite{Quelle}</code> zitieren einer Quelle</li>
|
|
<li class="fragment"><code>\cite[S. 15]{Quelle}</code> zitieren einer Seite</li>
|
|
<li class="fragment"><code>\bibliography{Name der .bib Datei}</code> Verweis auf die genutzte .bib Datei</li>
|
|
<li class="fragment"><code>\bibliographystyle{Zitierstil}</code> Angabe des genutzten Zitierstils</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
---
|
|
|
|
<div class="layout-only">
|
|
<div class="layout-content">
|
|
<h2>Was ist diese ominöse .bib Datei?</h2>
|
|
<p class="fragment">Sammlung von Quellenangaben</p>
|
|
<p class="fragment">Im BibTex Format</p>
|
|
<div class="fragment">
|
|
<p >Beispielhafter Literatureintrag im BibTex Format</p>
|
|
<pre class="lang-tex hljs"><code>
|
|
@article{turing1990, %Art des Dokuments und Bezeichner für den \cite Befehl
|
|
title={The chemical basis of morphogenesis}, % Titel
|
|
author={Turing, Alan Mathison}, % Autor
|
|
journal={Bulletin of mathematical biology}, % Titel des Journals
|
|
volume={52}, % Band des Journals
|
|
pages={153--197}, % Seitenzahl im Journal
|
|
year={1990}, % Erscheinungsjahr
|
|
publisher={Springer} % Verleger des Journals
|
|
}
|
|
</code></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
---
|
|
|
|
<div class="layout-only">
|
|
<div class="layout-content">
|
|
|
|
</div>
|
|
</div>
|