biblatex-apa

This commit is contained in:
Beat Jäckle 2023-10-20 15:53:56 +02:00
parent 453a80cf93
commit 13eb6c6ee3
8 changed files with 46 additions and 23 deletions

2
.gitignore vendored
View file

@ -15,3 +15,5 @@
*.vrb *.vrb
*local *local
*.lof *.lof
*.bcf
*.run.xml

View file

@ -9,7 +9,7 @@
@online{chatgpt, @online{chatgpt,
author = {ChatGPT}, author = {ChatGPT},
url = {https://chat.openai.com/chat}, url = {https://chat.openai.com/chat},
date = {23.02.2023}, date = {2023-02-23},
year = 2023, year = 2023,
title = {Prompt: 'Was ist Mathematik?'} title = {Prompt: 'Was ist Mathematik?'}
} }
@ -17,7 +17,7 @@
author = {Pascal Brachet}, author = {Pascal Brachet},
title = {Texmaker (free cross-platform latex editor).}, title = {Texmaker (free cross-platform latex editor).},
url = {https://www.xm1math.net/texmaker/doc.html#SECTION31}, url = {https://www.xm1math.net/texmaker/doc.html#SECTION31},
date = {26. Mai 2023}, date = {2023-05-26},
year = 2023 year = 2023
} }
@online{apaciteCtan, @online{apaciteCtan,
@ -33,6 +33,11 @@
year = {2023}, year = {2023},
url = {https://latexref.xyz/Using-BibTeX.html}, url = {https://latexref.xyz/Using-BibTeX.html},
title = {Using BibTeX}, title = {Using BibTeX},
month = {September},
lastchecked = {2023-10-10} lastchecked = {2023-10-10}
}
@online{biblatex-apa,
url = {https://www.ctan.org/pkg/biblatex-apa},
title = {biblatex-apa BibLaTeX citation and reference style for APA},
author = {Philip Kime},
date = {2023-03-20}
} }

View file

@ -13,10 +13,10 @@ Die Repositories beinhalten das texlive und sie können es einfach über den Ter
%sudo apt install texlive-full %sudo apt install texlive-full
\begin{verbatim} \begin{verbatim}
# Debian based # Debian based
sudo apt install texlive-latex-extra texlive-lang-german sudo apt install texlive-latex-extra texlive-lang-german biber
# Arch based # Arch based
sudo pacman -S texlive texlive-langgerman texlive-bin sudo pacman -S texlive texlive-langgerman texlive-bin biber
# RedHat based (Fedora) # RedHat based (Fedora)
sudo dnf install texlive-scheme-full sudo dnf install texlive-scheme-full
@ -39,11 +39,13 @@ Lluís Usó und Beat Jäckle benützen TeXstudio (für Windows, GNU+Linux und ma
\href{https://texstudio.org/}{https://texstudio.org/} \href{https://texstudio.org/}{https://texstudio.org/}
TeXstudio bassiert auf Texmaker, wird aber von einer Community betrieben. Es werden viele Features eingebaut, während die Entwicklung von Texmaker nur von einer Person betrieben wird. Deswegen wechselte Herr Jäckle auch von Texmaker zu TeXstudio.
\item Es gibt Texmaker (für Windows, macOS und GNU+Linux) \item Es gibt Texmaker (für Windows, macOS und GNU+Linux)
\href{https://xm1math.net/texmaker/}{https://xm1math.net/texmaker/} \href{https://xm1math.net/texmaker/}{https://xm1math.net/texmaker/}
Ein wichtiger Hinweis aus dem Handbuch. \cite[Kapitel 4.2]{masterdocument} Ein wichtiger Hinweis aus dem Handbuch. %\parcite[Kapitel 4.2]{masterdocument}
\begin{quote} \begin{quote}
Texmaker allows you to work onto documents separated in several files. Texmaker allows you to work onto documents separated in several files.
To include a TeX file into your document, just use the \verb`\include{file}` command in the \textit{LaTeX} menu. The file will appear in the \textit{Structure View}. With a click on his name, Texmaker will open it. To include a TeX file into your document, just use the \verb`\include{file}` command in the \textit{LaTeX} menu. The file will appear in the \textit{Structure View}. With a click on his name, Texmaker will open it.

View file

@ -40,6 +40,21 @@ Mit \texttt{apalike} kann man ähnlich zu APA zitieren. Doch nach Tests von Herr
% \printbibliography % \printbibliography
%\end{verbatim} %\end{verbatim}
% %
\subsection{APAcite}\label{sec:apacite}\label{bib:empfehlung} \subsection{APAcite}\label{sec:apacite}
\texttt{apacite} ist ein Paket, welches das nach APA6 zitiert. Die Richtlinien der KZO basiert auf APA. \texttt{apacite} ist ein Paket, welches das nach APA6 zitiert. Die Richtlinien der KZO basiert auf APA.
\cite{apaciteCtan} \cite{apaciteCtan}
\subsection{biblatex-apa}\label{sec:biblatex-apa}\label{bib:empfehlung}
biblatex-apa\footnote{\cite{biblatex-apa}} ist ein Paket, welches das nach APA7 zitiert. Die Richtlinien der KZO basiert auf APA.
Man benötigt \texttt{Biber}. \texttt{@online} Typen werden unterstützt.
Man muss beim Kompilieren bei TeXstudio F8 drücken, damit die Bibliothek \glqq aktualisiert\grqq{} wird.
Die Bib Datei wird vor dem \verb`\begin{document}` eingefügt. Mit dem Befehl \verb`\addbibresource{bibfile.bib}`.
An der Stell, an der das Literaturverzeichnis hinkommen soll, ruft man es mit dem Befehl \verb`\printbibliography` auf.
Folgende Pakete werden benörigt:
\begin{verbatim}
\usepackage{csquotes}
\usepackage[style=apa,backend=biber]{biblatex}
\end{verbatim}

View file

@ -11,9 +11,11 @@
\RequirePackage{graphicx} \RequirePackage{graphicx}
\RequirePackage[pdfusetitle]{hyperref} \RequirePackage[pdfusetitle]{hyperref}
\RequirePackage[ngerman]{babel} \RequirePackage[ngerman]{babel}
\newenvironment{abstract}{}{} %\newenvironment{abstract}{}{} %% Nicht benötigt in report
\RequirePackage{abstract} %\RequirePackage{abstract} %% Nicht benötigt in report
\RequirePackage{apacite} %\RequirePackage{apacite}
\RequirePackage{csquotes}
\RequirePackage[style=apa,backend=biber]{biblatex}
\pagestyle{empty} \pagestyle{empty}
\makeatletter\@addtoreset{section}{part}\makeatother% \makeatletter\@addtoreset{section}{part}\makeatother%

View file

@ -7,7 +7,7 @@
\newcommand*{\form}[1]{\gdef\@form{#1}} \newcommand*{\form}[1]{\gdef\@form{#1}}
\newcommand*{\@form}{\texttt{TODO: Set \string\form\string{...\string}}} \newcommand*{\@form}{\texttt{TODO: Set \string\form\string{...\string}}}
\renewcommand{\maketitle}{% \renewcommand{\maketitle}{\hypersetup{pageanchor=false} %
{ {
%\setlength{\marginparwidth}{10cm} %\setlength{\marginparwidth}{10cm}
%\setlength{\marginparsep}{10cm} %\setlength{\marginparsep}{10cm}
@ -30,6 +30,6 @@
\@supervisor \@supervisor
\textbf{Datum}\\ \textbf{Datum}\\
\thedate \thedate \hypersetup{pageanchor=true}%
} }

Binary file not shown.

View file

@ -1,11 +1,15 @@
\documentclass[10pt,a4paper]{book} % !TEX programm=latexmk
% !BIB program = biber
\documentclass[10pt,a4paper]{report}
\usepackage{src/kzo-thesis} \usepackage{src/kzo-thesis}
\title{KZO LaTeX Vorlage} \title{KZO LaTeX Vorlage}
\author{Beat Jäckle (Jb)} \author{Beat Jäckle (Jb)}
\date{\today} \date{\today}
\supervisor{Michael Bürgisser} \supervisor{Michael Bürgisser}
\project{Maturitätsarbeit} \project{Maturitätsarbeit}
\addbibresource{bibfile.bib}
\begin{document} \begin{document}
\hypersetup{pageanchor=false} \hypersetup{pageanchor=false}
@ -20,17 +24,10 @@
\include{kapitel/100_installation} \include{kapitel/100_installation}
\include{kapitel/200_mb} \include{kapitel/200_mb}
\include{kapitel/300_cite} \include{kapitel/300_cite}
% include
% Much more tipps: https://github.com/oetiker/lshort
% Literautrverzeichnis
%\include{kapitel/bibl.tex}
%\thebibliography
%https://tex.stackexchange.com/questions/85623/ieeetran-bibliography-germanify-it
%\bibliographystyle{src/deIEEEtran}
\bibliographystyle{apacite}
\nocite{chatgpt} \nocite{chatgpt}
\bibliography{bibfile} \printbibliography
% Abbildungsverzechnis, eventuell weglassen % Abbildungsverzechnis, eventuell weglassen
\listoffigures \listoffigures