Literaturverzeichnis

This commit is contained in:
Leonetienne 2022-05-19 11:14:29 +02:00
parent 289855140a
commit 2f1f0c7f58
No known key found for this signature in database
GPG Key ID: 0297FC11AD9236EF
6 changed files with 28 additions and 5 deletions

View File

@ -1,6 +1,7 @@
all:
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate table of contents (ToC)
bibtex main.aux
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate ToC page indices taking account the new ToC file
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate PDF with new ToC
rm -f kapitel/*.aux dexes/*.aux *.aux *.lof *.log *.lot *.toc *.tps *.out *.fdb_latexmk *.fls # Remove cache files
rm -f kapitel/*.aux *.aux *.bbl *.blg *.lof *.log *.lot *.toc *.tps *.out *.fdb_latexmk *.fls # Remove cache files

View File

@ -5,5 +5,5 @@
\input{chapters/vorstellung-partnerunternehmen}
\input{chapters/themenstellungen-in-der-praxisphase}
\input{chapters/reflexion-der-lehrinhalte}
\input{chapters/foobar}
\input{chapters/fazit}
\input{chapters/zusammenfassung}

View File

@ -0,0 +1,9 @@
%
% Chapter: Zusammenfassung
%
\chapter{Zusammenfassung}
\label{chap:zusammenfassung}
Die abschließende themenübergreifende Zusammenfassung stellt die bereits bekannten Ergebnisse dar und gibt einen Ausblick auf eine mögliche Fortsetzung (z. B. einen zukünftigen Praxisbericht). Der Umfang sollte eine Seite nicht übersteigen.

View File

@ -2,7 +2,19 @@
% Literaturverzeichnis
%
\nocite{*} % Show all references, even unused ones
% \nocite{*} % Show all references, even unused ones (disabled for now, remove comment to enable)
\bibliography{dexes/literature}
\bibliographystyle{apalike}
Am Ende der Arbeit steht das Literaturverzeichnis (Pflichtbestandteil).
Alle in der Arbeit verwendeten Quellen müssen hier aufgeführt werden, wobei keine gesonderte Gliederung nach
Zeitungsbeiträgen, Zeitschriftenaufsätzen, Buch- und Internetquellen erfolgt.
Bitte beachten Sie hier die \enquote{Handreichung Zitieren}.
Quellen können in \texttt{/dexes/literature.bib} definiert werden. Es sind bereits drei Examples angelegt.
\\
\\
BibTeX verlangt mindestens ein Zitat, also hier ein Example: \cite{bib:schwarzer-vorlesung-swa}.
Dieser Platzhaltertext steht in \texttt{/dexes/bibdex.tex}, und sollte entfernt werden.

View File

@ -1,7 +1,6 @@
# Example Paper
# Note that authors are "and"-seperated. The comma is part of the name. Like in "Etienne, Leon".
# So if you have multiple authors, use "Peter and Werner and Mario and Johann"...
@article{bib:leossfc,
author = {Maral, Gérard and de Ridder, Jean-Jacques and Evans, Barry G. and Richharia, Madhavendra},
title = {Low earth orbit satellite systems for communications},
@ -33,3 +32,4 @@
year = {2021},
publisher = {Hochschule Worms},
}

View File

@ -43,3 +43,4 @@
% Include the footer
\input{footer}
\end{document}