chapter 6 work
This commit is contained in:
parent
bf5dce1432
commit
e50511bf6a
@ -1,22 +1,63 @@
|
|||||||
<div class="layout-content-only">
|
<div class="layout-content-only">
|
||||||
<div class="layout-content">
|
<div class="layout-content">
|
||||||
<h1>Literatur­verwaltung</h1>
|
<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>
|
<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>
|
</div>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="layout-content-only">
|
<div class="layout-content-only">
|
||||||
<div class="layout-content">
|
<div class="layout-content">
|
||||||
<h2>Was brauchen wir dafür?</h2>
|
<h2>Was brauchen wir dafür?</h2>
|
||||||
Je nach gewünschtem Zitierstil gibt es unterschiedliche Pakete
|
<p class="fragment"><code><strong>BibTex</strong></code> als Schnittstelle zwischen der Literatur und LaTeX</p>
|
||||||
<ul>
|
<p class="fragment"><strong>Bibliographiedatei</strong> (nachfolgend ".bib" Datei) zur Speicherung von Literaturverweisen<p>
|
||||||
<li><pre>natbib</pre></li>
|
</div>
|
||||||
<li><pre>biblatex-chicago</pre></li>
|
|
||||||
<li><pre>biblatex-apa</pre></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user