I was happy to see the extensions in the biblatex-ext manual the biblatex-ext can provide and I have added biblatex-ext using the MikTex 2.9 packet manager.
I have successfully made my citations with "[" and "]" using:
\DeclareOuterCiteDelim{parencite}{\bibopenbracket}{\bibclosebracket}
\DeclareInnerCiteDelim{parencite}{\bibopenparen}{\bibcloseparen}
On page 16 I found then exactly the bibliography style I want for my thesis and took over the five lines by cut&paste in my main-tex file:
\documentclass{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[ext-style=authoryear-icomp,sorting=nyt]{biblatex}
\DeclareOuterCiteDelim{parencite}{\bibopenbracket}{\bibclosebracket}
\DeclareInnerCiteDelim{parencite}{\bibopenparen}{\bibcloseparen}
%the interesting lines start here:
\DeclareFieldFormat{bbx:introcite}{\mkbibbold{#1}}
\DeclareDelimcontextAlias{bbx:introcite}{textcite}
\DeclareInnerCiteDelim{bbx:introcite}{\bibopenparen}{\bibcloseparen}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
%the interesting lines end here:
\addbibresource{Literatur.bib}
\begin{document}
Citation1: \autocite{Knuth:Texbook}
Citation2: \autocite{Schlosser:Latex}
Citation2: \autocite[siehe][S. 130]{Beucher:MATLAB}
\printbibliography
\end{document}
The Literatur.bib file:
@Book{Knuth:Texbook,
author = {Donald Knuth},
title = {The TeXbook},
editor = {unknown},
publisher = {Addison Wesley},
year = {1986},
}
@Book{Schlosser:Latex,
author = {Joachim Schlosser},
title = {Wissenschaftliche Arbeiten schreiben mit Latex},
editor = {unknown},
publisher = {mitp Verlag},
year = {2014},
}
@Book{Beucher:MATLAB,
author = {Ottmar Beucher},
title = {Immer Ärger mit MATLAB und Simulink},
publisher = {mitp Verlag},
editor = {unknown},
year = {2012},
url = {http://www.amazon.de},
}
There is no effect of the five lines:
\DeclareFieldFormat{bbx:introcite}{\mkbibbold{#1}}
\DeclareDelimcontextAlias{bbx:introcite}{textcite}
\DeclareInnerCiteDelim{bbx:introcite}{\bibopenparen}{\bibcloseparen}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
to the bibliography! There is no error message at the LaTeX runs. When I remove them from the code there is no change at the bibliography appearance.
I have updated MikTex completely, even it took a while and I rebooted my PC - no change.
I am not a LaTeX professional and I don't have an idea what the reason could be why these five lines are ineffective.
Do you have an idea what the reason could be?
Thanks a lot for every hint!
Greetings from Germany

introcite=label. – moewe Jun 09 '18 at 09:16