I cite some things in footnotes, and want to cite some other things in bibliography using a numbered style. I have to use biblatex-gost style, and it provides the functionality.
But I get issue: bibliography counter doesn't start with 1. I tried to reset it using solutions found here. But it doesn't work. Neither
\usepackage[
...
defernumbers=true,
...
]{biblatex}
...
\printbibliography[resetnumbers=true, notkeyword=footcited]
works.
Here's an MWE:
\documentclass{article}
\usepackage{fontspec} % enagles loading of OpenType fonts
\usepackage{polyglossia} % support for languages
% fonts:
\defaultfontfeatures{Scale=MatchLowercase,Mapping=tex-text} % without this XeLaTeX won't turn "--" into dashes
\setmainfont{DejaVu Sans}
\setsansfont{DejaVu Sans}
\setmonofont{DejaVu Sans Mono}
% Russian/English document:
\usepackage{xecyr}
\newfontfamily\cyrillicfont{DejaVu Sans}
\setmainlanguage{russian} % \setdefaultlanguage{russian} is obsolete and not needed
\setotherlanguage[variant=american]{english}
% bibliography:
\usepackage[
backend=biber,
minnames=3,
citestyle=gost-footnote-min,
bibstyle=gost-numeric-min,
url=false,
sorting=none,
language=auto,
babel=other,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
keywords = {footcited},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Text\footcite{A01}.
\nocite{B02, C03}
% bibliography:
\printbibliography[notkeyword=footcited]
\end{document}
Result:

Edit:
No Russian, no biblatex-gost MWE with resetnumbers:
\documentclass{article}
\usepackage{fontspec} % enagles loading of OpenType fonts
\usepackage{polyglossia} % support for languages
% fonts:
\defaultfontfeatures{Scale=MatchLowercase,Mapping=tex-text} % without this XeLaTeX won't turn "--" into dashes
\setmainfont{DejaVu Sans}
\setsansfont{DejaVu Sans}
\setmonofont{DejaVu Sans Mono}
\setmainlanguage{english} % \setdefaultlanguage{russian} is obsolete and not needed
% bibliography:
\usepackage[
backend=biber,
minnames=3,
url=false,
sorting=none,
language=auto,
babel=other,
defernumbers=true,
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
keywords = {footcited},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Text\footcite{A01}.
\nocite{B02, C03}
% bibliography:
\printbibliography[resetnumbers=true, notkeyword=footcited]
\end{document}
Result:

biblatex-gostMWE withresetnumbers. Does it work on Your machine? – Adobe Jun 12 '13 at 19:54xelatex,biber,xelatex,xelatex. Note that subsequently you need two runs ofxelatex; after one, the numbering is wrong and the log file contains the warningPackage biblatex Warning: Please rerun LaTeX., after that second run the number is again correct. – Andrew Swann Jun 12 '13 at 20:13biblatex-gostas well. – Adobe Jun 12 '13 at 20:20