I want to insert a letter (eg. "S") before citations both in text and in the bibliography. I've found a similar question here:
How to add a letter before the number of citation in the text?
However:
- I want to do it for only a
refsection, - with the using of
biblatex/biber.
But I have no idea how. My MWE:
\documentclass{article}
\usepackage[sorting=none,backref=false]{biblatex}
\bibliography{\jobname.bib}
\begin{document}
\section{Considered as refsection 0}
This is a normal citation: \cite{NiInt_3}.
\section{Refsection1}
\begin{refsection}
I want to cite this \cite{NiInt_1} as [S1] here and in the bibliography.
\printbibliography[keyword=withletter, title={With letter}]
\end{refsection}
\printbibliography[title={Without letter}]
\end{document}


Texliveand now it works. Thank you for your kind help! – Tom Solid Oct 26 '20 at 14:29