"vgl." vor Fußnoten global einstellen
zum zitieren meiner Literatur hätte ich nochmal eine Frage.
Und zwar möchte ich gerne global einstellen, dass vor bestimmten
\footcite
Momentan gebe ich das jeweils einzeln ein
\footcite[vgl.][S. c-y]{BibTexkey}\AtEveryCite{%
\DeclareFieldFormat[article]{postnote}{.{#1}}%
\DeclareFieldFormat[periodical]{postnote}{#1}%
\DeclareFieldFormat[online]{postnote}{#1}%
\DeclareFieldFormat[book]{postnote}{#1}%
\DeclareFieldFormat[jurisdiction]{postnote}{#1}%
\DeclareFieldFormat[legal]{postnote}{#1}%
\DeclareFieldFormat[commentary]{postnote}{#1}%
}%\AtEveryCite{%
\DeclareFieldFormat[article]{prenote}{vgl. {#1}}%
\DeclareFieldFormat[periodical]{pretnote}{#1}%
\DeclareFieldFormat[online]{prenote}{#1}%
\DeclareFieldFormat[book]{prenote}{#1}%
\DeclareFieldFormat[jurisdiction]{prenote}{#1}%
\DeclareFieldFormat[legal]{prenote}{#1}%
\DeclareFieldFormat[commentary]{prenote}{#1}%
}%Hier mal ein komplettes Minimalbeispiel:
\documentclass[12pt,a4paper,pointednumbers]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[autostyle]{csquotes}
\usepackage[backend=biber,%Porzessoroption
style=biblatex-juradiss,%juristische Zitierweise
backref=false,%Anzeige der Referenzen
backrefstyle=two,
]
{biblatex}
\renewcommand*{\mkbibnamelast}[1]{\textit{#1}}
\addbibresource{BspLit.bib}
\usepackage{blindtext}
\AtEveryCite{%
\DeclareFieldFormat[article]{postnote}{.{#1}}%
\DeclareFieldFormat[periodical]{postnote}{#1}%
\DeclareFieldFormat[online]{postnote}{#1}%
\DeclareFieldFormat[book]{postnote}{#1}%
\DeclareFieldFormat[jurisdiction]{postnote}{#1}%
\DeclareFieldFormat[legal]{postnote}{#1}%
\DeclareFieldFormat[commentary]{postnote}{#1}%
}%
\AtEveryCite{%
\DeclareFieldFormat[article]{prenote}{vgl. {#1}}%
\DeclareFieldFormat[periodical]{pretnote}{#1}%
\DeclareFieldFormat[online]{prenote}{#1}%
\DeclareFieldFormat[book]{prenote}{#1}%
\DeclareFieldFormat[jurisdiction]{prenote}{#1}%
\DeclareFieldFormat[legal]{prenote}{#1}%
\DeclareFieldFormat[commentary]{prenote}{#1}%
}%
\DeclareBibliographyDriver{cite:book}{%
{%
\iffieldundef{shorttitle}%
{\printfield{title}}%
{\printfield{shorttitle}}%
}%
}%
\begin{document}
\printbibliography
\blindtext \footcite[S. 5-6]{fitzgerald:realigning_research_and_practice}
\blindtext \footcite[rn. 6]{raymond:cathedral_bazaar_book}
\blindtext
\footcite{fitzgerald:realigning_research_and_practice}
\end{document}@PROCEEDINGS{raymond:cathedral_bazaar_book,
EDITOR = "Tim O'Reilly",
TITLE = "{T}he {C}athedral and the {B}azaar -- {M}usings on {L}inux
and {O}pen {S}ource by an {A}ccidental {R}evolutionary",
PUBLISHER = "O'Reilly",
ADDRESS = "Sebastopol, CA",
YEAR = 1999,
NOTE = ""
}
@BOOK{fitzgerald:realigning_research_and_practice,
AUTHOR = "Fitzgerald, B. and Russo, N. and DeGross, J.",
%Mehrere Autoren werden mit 'and' eingetragen
TITLE = "{R}ealigning {R}esearch and {P}ractice in {I}nformation {S}ystems
{D}evelopment: {T}he {S}ocial and {O}rganizational {P}erspective",
PUBLISHER = "Kluwer Academic Press",
YEAR = "2001",
ADDRESS = "Boston",
NOTE = "Eine optionale Notiz"
}Gibt es irgendwo eine schöne Zusammenstellung von gängigen Bibliography Kommandos?
Die biblatex- Dokumentation finde ich unglaublich unübersichtlich.
Vielen Dank schon mal!
lg LiWu