Literaturverzeichnis

This commit is contained in:
Leonetienne
2022-05-19 11:14:29 +02:00
parent 289855140a
commit 2f1f0c7f58
6 changed files with 28 additions and 5 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
all: all:
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate table of contents (ToC) 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 ToC page indices taking account the new ToC file
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate PDF with new ToC 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
+2 -2
View File
@@ -5,5 +5,5 @@
\input{chapters/vorstellung-partnerunternehmen} \input{chapters/vorstellung-partnerunternehmen}
\input{chapters/themenstellungen-in-der-praxisphase} \input{chapters/themenstellungen-in-der-praxisphase}
\input{chapters/reflexion-der-lehrinhalte} \input{chapters/reflexion-der-lehrinhalte}
\input{chapters/foobar} \input{chapters/zusammenfassung}
\input{chapters/fazit}
+9
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.
+13 -1
View File
@@ -2,7 +2,19 @@
% Literaturverzeichnis % 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} \bibliography{dexes/literature}
\bibliographystyle{apalike} \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.
+1 -1
View File
@@ -1,7 +1,6 @@
# Example Paper # Example Paper
# Note that authors are "and"-seperated. The comma is part of the name. Like in "Etienne, Leon". # 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"... # So if you have multiple authors, use "Peter and Werner and Mario and Johann"...
@article{bib:leossfc, @article{bib:leossfc,
author = {Maral, Gérard and de Ridder, Jean-Jacques and Evans, Barry G. and Richharia, Madhavendra}, author = {Maral, Gérard and de Ridder, Jean-Jacques and Evans, Barry G. and Richharia, Madhavendra},
title = {Low earth orbit satellite systems for communications}, title = {Low earth orbit satellite systems for communications},
@@ -33,3 +32,4 @@
year = {2021}, year = {2021},
publisher = {Hochschule Worms}, publisher = {Hochschule Worms},
} }
+1
View File
@@ -43,3 +43,4 @@
% Include the footer % Include the footer
\input{footer} \input{footer}
\end{document} \end{document}