Unterschiedliche Zitation je nach Kapitel
Ich möchte die Zitation im Einleitungskapitel anders gestalten als im Rest des Dokuments. Geht das und wenn ja, wie?
\begin{filecontents}{\jobname.bib}
@BOOK{Stromback1975,
author = {Stromback, Dag and Foote, Peter},
shortauthor = {Strömbäck/Foote},
gender = {pm},
title = {The conversion of Iceland},
shorttitle = {The conversion of Iceland},
subtitle = {A survey},
address = {London},
year = {1975},
publisher = {Viking Society for Northern Research},
keywords = {secondary, Christianisierung},
number = {6},
series = {Text Series},
}
\end{filecontents}
\documentclass{article}
\usepackage[main=ngerman,icelandic]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[doi=true,annotation=false,hyperref=true,backend=biber,namefont=smallcaps,style=footnote-dw,idemfont=italic,pageref=true,idembib=true,ibidtracker=constrict,xref=false,idembibformat=dash,edbyidem=true,journalnumber=afteryear,useeditor=true,useprefix=true,editorstring=parens,edstringincitations=true,citepages=permit,urldate=long,xref=true]{biblatex}
\usepackage{hyperref}
\addbibresource{\jobname.bib}
\begin{document}
\section{Einleitung}
Im Einleitungskapitel soll keine Vollzitat, sondern nur der \textit{Autorenname (Jahr): Titel"'} \textit{Stromback/Foote (1975): The Conversion of Iceland} ausgegeben werden.
\section{Zweites Kapitel}
Im Hauptteil sollen die Referenzen als Vollzitat ausgegeben werden.
\cite[Siehe]{Stromback1975}
\printbibliography
\end{document}