Zunächst sind ein MWE und seine Ausgabe wie folgt.
\documentclass{ctexart}
\usepackage[utf8, backend=biber, style=caspervector-ay]{biblatex}
%the style set alldates=iso in default
\begin{filecontents*}{\jobname.bib}
@book{bookot,
location = {Place},
publisher = {ABC},
author = {Name, Given},
title = {One title},
year = {2001},
}
@book{bookat,
location = {Place},
publisher = {ABC},
author = {Name, Given},
title = {Another title},
date = {2001/2009},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
some quote from \cite{bookot,bookat}
some quote from \parencite{bookot,bookat}
some quote from \textcite{bookot,bookat}
some quote from \textcite{bookot}
some quote from \parencite*{bookot}
\printbibliography
\end{document}
Wie Sie sehen, ist das Symbol für Datumsbereiche , -
aber nicht /
im caspervector-ay
Stil, d. h. es ist 2001-2009. Wie kann man dann das Symbol für Datumsbereiche ändern /
, d. h. 2001-2009 wird zu 2001/2009 wie in der ISO?
Antwort1
Der Datumsbereichstrenner wird gesteuert durch \bibdaterangesep
(wird im iso
Datumsformat \bibdaterangesep
nicht verwendet: dort ist der Schrägstrich fest codiert). Sie können ihn wie folgt neu definieren
\renewrobustcmd*{\bibdaterangesep}{\slash}