Skip to content

Instantly share code, notes, and snippets.

@moewew
Created August 22, 2020 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moewew/6fabd4f9aa6a46da397514c63d2a4de5 to your computer and use it in GitHub Desktop.
Save moewew/6fabd4f9aa6a46da397514c63d2a4de5 to your computer and use it in GitHub Desktop.
\documentclass[a4paper,12pt]{scrreprt}
\usepackage[left= 3.5cm,right = 2cm, top = 2.5cm, bottom = 2 cm]{geometry}
\usepackage[onehalfspacing]{setspace}
% Dokumentinformationen
\usepackage[
pdftitle={TTT},
pdfsubject={TTT},
pdfauthor={TTT},
pdfkeywords={TTT},
%Links nicht einrahmen
hidelinks
]{hyperref}
% ============= Dokumenteinstellungen =============
%Alternative Schrift
%\usepackage{mathpazo}
%Hurenkinder
\clubpenalty10000
\widowpenalty10000
\displaywidowpenalty=10000
%einrücken nach Absatz
\setlength{\parindent}{25pt}
% ============= Packages =============
% Standard Packages
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx, subfig}
\graphicspath{{img/}}
\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{color}
\usepackage{array}
\usepackage{colortbl}
\usepackage{multirow}
\usepackage{microtype} %Schönere Umbrüche
\usepackage{longtable}
\usepackage[normalem]{ulem}
% ============= Zitation =============
\usepackage{csquotes}
\usepackage[backend = biber, style = apa, sortcites = true, alldates=short]{biblatex}
\AtBeginBibliography{\renewcommand\finalandcomma{\addcomma}} %Komma vor &
\setquotestyle[quotes]{german}
\DefineBibliographyStrings{ngerman}{
retrieved = {Zugriff am},
from = {}
}
\DeclareFieldFormat{urldate}{#1.}
%APA6th
%et al erst ab zweiter Nennung, siehe oben citenames und maxcitenames=2 in biblatex
%\AtEveryCitekey{\ifciteseen{}{\defcounter{maxnames}{99}}}
%Notizen aus bib file ignorieren
\AtEveryBibitem{%
\clearfield{note}%
}
%Location aus bib file entfernen
\AtEveryBibitem{%
\clearlist{location}%
}
%In Blocksatz Links umbrechen
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{8000}
\addbibresource{biblatex-examples.bib}
\begin{document}
\pagestyle{fancy}
\tableofcontents
\chapter{Lorem}
lorem \autocite{sigfridsson}
\chapter{ipsum}
Ipsum \autocite{worman}
\pagenumbering{Roman}
\setcounter{page}{3}
\printbibliography[heading=bibintoc,title={Literaturverzeichnis}]
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment