I do not like the way the commands \cite or \parencite produce page numbers. If I give a command \cite[43]{XXX2015}, it produces:
XXX2015, p.43.
What I would like is:
XXX2015:43.
I understand that the command \citet is supposed to give me this, and I also understand from searching around that I should load the natbib package to get that. However, there is some compatibility issue related to what I already have in my preamble. I guess it must be the biblatex package or backend package (if that is indeed a package). If I just load the natbib package I get the error message:
command \bighang already defined.
Can I continue to use the backend package with this setting and just add something? Here is a MWWW:
\documentclass[12]{article}
\usepackage[english]{babel}
\usepackage[backend=biber, style=authoryear-comp, sortcites=false, maxcitenames=2, mincitenames=1, maxbibnames=4, uniquelist=false]{biblatex}
\addbibresource{ref.bib}
\begin{document}
Blablabla. \cite[43]{Wolfe2015}
\end{document}

biblatexhas anatbiboption to emulate these natbib commands. See p. 6 of the documentation of biblatex. – Bernard Jul 05 '18 at 14:15\citetandcitepcommands are defined to emulate the corresponding commands ofnatbib. I can't say more, not using natbib personally. – Bernard Jul 05 '18 at 14:40