i have a question regarding the \inparencite command. I use it to integrate citations into the text. Generally it works fine, but for indirect citations I would need a "vgl." (it's the german equivalent for "c.f.") before the date. However, the command does not exactly what I expect it to do. Example:
I use the command like this:
"As \inparencite[vgl.][S. 15]{Someone1990} stated, blablabla."
The output is:
"As vgl. Someone (1990, S. 15) stated, blablabla."
What I want it to look like:
"As Someone (vgl. 1990, S. 15) stated, blablabla."
Does anyone know how to change this?
My main.tex looks like this:
Code: Select all
\RequirePackage[ngerman = ngerman-x-latest]{hyphsubst}
% Seitenlayout:
\documentclass{scrbook}
% load packages:
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[backend=biber, style=authoryear-luh-ipw]{biblatex}
\addbibresource{literature.bib}
\title{test}
\begin{document}
As \inparencite[vgl.][S. 10]{test1} stated, blabla
\printbibliography
\end{document}
Code: Select all
@book{test1,
title = {This is a title},
author = {Mister Someone},
year = {1990}
}