In biblatex, when no citestring is provided in a cite command, the package prints . I want to re-define this string. However, I have not found a documented command or option to do this.
In biblatex.sty this string is defined in line 11413:
\def\abx@warn@emptycite@print@text{%
\textless empty citation\textgreater}
How can I redfine this? I have tried it as follows with no effect:
\def\abx@warn@emptycite@print@text{%
New String}
Since I am not familiar with the correct syntax; what would be the correct way to do this?
EDIT: A MWE is this:
\documentclass{article}
\usepackage{biblatex}
%% Redefining does not work.
\def\abx@warn@emptycite@print@text{%
New String}
\begin{document}
This is an empty citation \cite{}.
\end{document}
``
documentenvironment. – samcarter_is_at_topanswers.xyz Jan 12 '24 at 11:40@(at) symbol in the name you need to put\makeatletterbefore it and\makeatotherafter, so in this case\makeatletter \def\abx@warn@emptycite@print@text{New String} \makeatother. Note that this may not be the full solution, if you provide a short compilable test file then we can try it out. – Marijn Jan 12 '24 at 11:54