I have been looking for days how do to this but unfortunately haven't yet managed to do it. I have some references in my biblatex bibliography. I am citing, for example let's say "Smith2018", in different pages of my document. I am citing it as a whole, not like different page intervals of Smith2018. Each time I cite it, not only it is shown with a different [number] in footnotes in different pages (in bibliography in the end is shown with just one number), it also increments the counter number for successive citations (thus creating jumps in the bibliography numbers in the end).
So, I cite Smith2018 in page 4. In that page and in the footnotes is shown as [1].
Then I cite Andreson2019 in page 5. In that page and in the footnotes is shown as [2].
After that I cite Smith2018 again in page 6. In that page and in the footnotes is shown as [3]. I want this to be shown as [1].
When I cite Johnson2020 in page 7, in that page and in the footnotes is shown as [4]. I want it to be [3], the next number after Andreson2019's since the second citation of Smith2018 will have to be the same number as the its first citation.
In the end of my document, in the bibliography, the citations are shown as:
[1] Smith2018 description (cited in page 4 and 6)
[2] Andreson2019 description (cited in page 5)
[4] Johnson2020 description (cited in page 7)
I don't like the jump from [2] to [4]. I want Johnson2020 to be [3].
How do I solve this problem?
A way around (not satisfactory enough) this is as follows:
I cite Smith2018 in page 4 like: \autocite[\protect\label{Smith2018}][]{Smith2018}. In that page and in the footnotes is shown as [1].
Then I cite Andreson2019 in page 5 like: \autocite[\protect\label{Smith2018}][]{Smith2018}. In that page and in the footnotes is shown as [2].
After that I link Smith2018 again in page 6 but without a citation like: \textsuperscript{\hyperref[Smith2018]{\ref*{Smith2018}}}. In that page it is shown as [1] (which is what I want) but it is not shown in the footnotes and doesn't count as a real citation.
When I cite Johnson2020 in page 7 like: \autocite[\protect\label{Smith2018}][]{Smith2018} , in that page and in the footnotes is shown as [3] (which is what I want).
In the end of my document, in the bibliography, the citations are shown as:
[1] Smith2018 description (cited in page 4) - Here page 6 is missing because the ref link I created in that page isn't a real citation!!!
[2] Andreson2019 description (cited in page 5)
[3] Johnson2020 description (cited in page 7)
There is no jump in the numbers [2] to [3] this time but the second citation (in page 6) of [1] is missing.
If it was not possibile to solve the problem above, how do I at least make the way around more acceptable? Thank you.
Edit:
\usepackage[backend=biber,
citestyle=verbose-ibid,
sorting=none,
bibstyle=numeric,
autocite=footnote,
backref,
backrefstyle=none,
doi=true,
url=true,
maxnames=99,
]{biblatex}
\DefineBibliographyStrings{english}{
backrefpage = {Cited on page},
backrefpages = {Cited on pages},
} \renewbibmacro{pageref}{\iflistundef{pageref}
{\printtext[parens]{Not cited}}
{\printtext[parens]{\ifnumgreater{\value{pageref}}{1}
{\bibstring{backrefpages}}
{\bibstring{backrefpage}}
\printlist[pageref][-\value{listtotal}]{pageref}}}}
\addbibresource{Bibliography.bib}
\usepackage{hyperref}
\begin{document}
...


ibidafterwards, or aSee n 3, supravariation? – Cicada May 05 '20 at 08:42Johnson2020should be [3] in the bibliography (it wouldn't be 3 in the citations with the setup shown so far, but that is explained in my answer). I also can not imagine a setting where this result would be produced unless you filter your bibliography and cite or\nociteadditional entries not discussed in the example. – moewe May 06 '20 at 07:05