I want them to look like this:
Smith (1995: 14-16)
but they look like this:
Smith (1995, pp. 14-16)
(in other words, there should be a colon and a space separating the year from the pages, and the abbreviation pp. should not be added automatically)
This is the command I'm using:
Code: Select all
\citet[14-16]{Smith1995}
Code: Select all
\usepackage[
backend=biber,
sorting=nyt,
style=authoryear-comp,
sortlocale=de_DE,
natbib=true,
url=false,
doi=true,
eprint=false]{biblatex}
1.
\setcitestyle{notesep={:}}
2.
\bibpunct[: ]{[}{]}{,}{a}{}{;}
I suspect these trigger errors because they are commands from the natbib-package, but the natbib-package is only declared via the options in the
usepackage{biblatex}
command.I have no idea where else to look to find where that comma and the automatic p./pp. are added, and then change them.
Any help would be appreciated!