As a follow-up of my old question "How to print the internal ID of the bibliography entries in the output format for referring to files?" I still have one problem:
I do use backref=true for biblatex, and for stylistic reasons I obviously want that to be printed last in the entry.
Now e.g. here is an example:
% !TeX program = lualatex
% !TeX encoding = UTF-8
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric,
sortcites=true,
sorting=none,
defernumbers=true,
%maxcitenames=3,
minbibnames=3, % cite up to three authors in bib
backref=true,
backend=biber]{biblatex}
\begin{filecontents}{mybib2.bib}
@article{test,
author={Awesome person},
title={How to be awesome in 5 easy steps.},
date = {2020-06-23},
journaltitle = {{Stackexchange Human Personalities}},
note = {Note is here},
addendum = {Addendum is here.},
url = {https://tex.stackexchange.com/}
}
\end{filecontents}
% special entry declaration STARTS HERE
\DeclareFieldFormat{entrykey}{Internal entry: \texttt{#1}}
\renewbibmacro*{finentry}{\newunit\newblock\printfield{entrykey}\finentry}
% special entry declaration ENDS HERE
\addbibresource{biblatex-examples.bib}
\addbibresource{mybib2.bib}
\begin{document}
\autocite{sigfridsson,worman,geer,nussbaum}
\cite{test}
\newpage
\printbibliography
\end{document}
That works quite well (expect for one other issue), but the actual problem here is that the "Cit. on p. 1" is printed last - yes, I know finentry makes that quite obvious, but I've searched the biblatex doc and could not find another entry I could overwrite like nearlyfinentry or finentry-1 or whatever that may be called.
That's what I'd like to have.
The best would of course be, if I could define it in a relative to some entry, i.e. "before backref" (in my case possibly) or "after addendum" (also quite useful in my case) or "insert before 2nd last entry shown" or "after url field" etc. I think you get what I mean.
Here the output is shown:
What I basically want is to show my (here underlined in blue) entry before the red backreference entry.

