Last active
October 6, 2019 15:19
-
-
Save sternenseemann/ca37ab8888e4bb2ddcf02cb8a738aced to your computer and use it in GitHub Desktop.
LaTeX Bibliografiestil für Philosophie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ProvidesPackage{philcite} | |
\usepackage{csquotes} | |
\usepackage[% | |
style=philosophy-verbose% | |
, sorting=nyt% | |
, shorthandintro=true% | |
, loccittracker=context% | |
, inbeforejournal=true | |
]{biblatex} | |
\DefineBibliographyStrings{german}{opcit = {}, loccit = {ebd.}}% | |
\DeclareNameAlias{author}{given-family}% | |
\DeclareNameAlias{sortname}{family-given}% | |
\DeclareFieldFormat[incollection]{title}{\mkbibemph{#1}}% | |
\DeclareFieldFormat[incollection]{citetitle}{\mkbibemph{#1}}% | |
\DeclareDelimFormat*{multinamedelim}{\addslash}% | |
\DeclareDelimFormat*{finalnamedelim}{\addslash}% | |
\renewcommand*{\multinamedelim}{\addslash}% | |
\renewcommand*{\finalnamedelim}{\addslash}% | |
\DeclareDelimFormat*{nametitledelim}{\addcolon\space}% | |
\renewcommand*{\nametitledelim}{\addcolon\space}% | |
\renewcommand*{\labelnamepunct}{\addcolon\space}% | |
\newenvironment{myquote}% | |
{\begin{list}{}% | |
{\setlength{\leftmargin}{1cm}\singlespacing\small}% | |
\item[]% | |
} | |
{\end{list}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment