This commit is contained in:
Beat Jäckle 2023-10-10 11:56:18 +02:00
parent dc65b04ddc
commit 3dd8b749de
5 changed files with 106 additions and 18 deletions

38
bibfile.bib Normal file
View file

@ -0,0 +1,38 @@
@book{mond05,
author = {Enzo Mondello},
year= 2015,
title = {Portfolimanagement -- Theorie und Anwendungsbeispiele},
publisher = {Springer Gabler},
edition = {2},
address = {Wiesbaden}
}
@online{chatgpt,
author = {ChatGPT},
url = {https://chat.openai.com/chat},
date = {23.02.2023},
year = 2023,
title = {Prompt: 'Was ist Mathematik?'}
}
@online{masterdocument,
author = {Pascal Brachet},
title = {Texmaker (free cross-platform latex editor).},
url = {https://www.xm1math.net/texmaker/doc.html#SECTION31},
date = {26. Mai 2023},
year = 2023
}
@online{apaciteCtan,
author = {Erik Meijer},
title = {CTAN: Paket apacite},
url = {https://www.ctan.org/pkg/apacite},
_url = {http://mirrors.ctan.org/biblio/bibtex/contrib/apacite/apacite.pdf},
year = {2013},
lastchecked = {2023-10-10}
}
@manual{UsingBibTeX,
author = {{Unofficial LaTeX2e reference manual}},
year = {2023},
url = {https://latexref.xyz/Using-BibTeX.html},
title = {Using BibTeX},
month = {September},
lastchecked = {2023-10-10}
}

41
kapitel/300_cite.tex Normal file
View file

@ -0,0 +1,41 @@
\section{Wie Zitiere ich in LaTeX?}
Es gibt viele Varianten wie man mit LaTeX Zitieren kann. Ich kann \ref{bib:empfehlung} BibTex empfehlen.
\subsection{Die Basis -- von Hand}
Auf der Webseite \url{https://latexref.xyz/thebibliography.html} wird erklärt, wie man ohne Bib-Datei Zitieren kann. Ich rate davon ab, da es viel Handarbeit ist.
\begin{verbatim}
\begin{thebibliography}{widest-label}
\bibitem[label]{cite_key}
...
\end{thebibliography}
\end{verbatim}
\subsection{BibTeX}\label{bib:empfehlung}
BibTeX ist ein Programm, welches die Bibliografie/Literaturverzeichnis zu automatisieren.
Ein Handbuch ist \cite{UsingBibTeX}.
\begin{verbatim}
\bibliographystyle{bibstyle}
\bibliography{bibfile1, bibfile2, ...}
\end{verbatim}
Die Typen können hier nachgeschaut werden: \url{https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex}
Eine Auswahl von Styles gibt es hier:
\url{https://www.overleaf.com/learn/latex/Bibtex_bibliography_styles}
%\subsection{Biber}
%Man kann auch mit \emph{Biber} arbeiten. Doch das einrichten kann umständlicher sein.
%\begin{verbatim}
% \usepackage[
% backend=biber,
% style=alphabetic,
% sorting=ynt
% ]{biblatex}
%
% \addbibresource{references.bib} %Import the bibliography file
%
% \printbibliography
%\end{verbatim}
%
\subsection{APAcite}
\texttt{apacite} ist ein Paket, welches das nach APA6 zitiert. Die Richtlinien der KZO basiert auf APA.
\cite{apaciteCtan}

View file

@ -1,18 +1,19 @@
%\ProvidesPackage{kzo-thesis}
\usepackage{src/titlepage}
%\usepackage[parfill]{parskip}
\usepackage{parskip}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amscd}
\usepackage{graphicx}
\usepackage[pdfusetitle]{hyperref}
\usepackage{ngerman}
\RequirePackage{src/titlepage}
%\RequirePackage[parfill]{parskip}
\RequirePackage{parskip}
\RequirePackage[utf8]{inputenc}
\RequirePackage{amsmath}
\RequirePackage{amsthm}
\RequirePackage{amsfonts}
\RequirePackage{amssymb}
\RequirePackage{amscd}
\RequirePackage{graphicx}
\RequirePackage[pdfusetitle]{hyperref}
\RequirePackage[ngerman]{babel}
\newenvironment{abstract}{}{}
\usepackage{abstract}
\RequirePackage{abstract}
\RequirePackage{apacite}
\pagestyle{empty}
\makeatletter\@addtoreset{section}{part}\makeatother%
@ -21,4 +22,4 @@
\author{TODO AUTHOR}
\date{\today}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\RequirePackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}

Binary file not shown.

View file

@ -8,21 +8,29 @@
\project{Maturitätsarbeit}
\begin{document}
\hypersetup{pageanchor=false}
\begin{titlepage}
\maketitle
\end{titlepage}
\include{kapitel/030_abstract}
\tableofcontents
\hypersetup{pageanchor=true}
\include{kapitel/100_installation}
\include{kapitel/200_mb.tex}
\include{kapitel/200_mb}
\include{kapitel/300_cite}
% include
% Much more tipps: https://github.com/oetiker/lshort
% Literautrverzeichnis
\include{kapitel/bibl.tex}
%\include{kapitel/bibl.tex}
%\thebibliography
%https://tex.stackexchange.com/questions/85623/ieeetran-bibliography-germanify-it
%\bibliographystyle{src/deIEEEtran}
%\bibliographystyle{apalike}
\bibliographystyle{apacite}
\nocite{chatgpt}
\bibliography{bibfile}
% Abbildungsverzechnis, eventuell weglassen
\listoffigures