After compilation, my documents restarts numbering after each chapter. I would like every reference number to be used only once accross the wole document.
Here are my biblatex settings:
\usepackage[backend=biber, citestyle=authoryear, hyperref=true, sorting=nty, defernumbers=true]{biblatex}
And here is the print command:
\printbibheading[
heading=bibintoc,
title={References}
]
\printbibliography[heading=subbibintoc,keyword={Secondary},title={Secondary Sources}]
\printbibliography[heading=subbibintoc,keyword={Primary},title={Primary Sources}]
edit: Here is a working example that reproduced the probelm:
Thanks a lot for taking the time to help.
Here is a small working ecample of my problem:
\documentclass[12pt,a4paper, oneside, oldfontcommands, hidelinks]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage[dvips]{graphicx}
\usepackage{xcolor}
\usepackage{times}
\usepackage[export]{adjustbox}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{footnotebackref}
\usepackage{hyperref}
\usepackage{tocloft}
\usepackage{blindtext}
\usepackage{etoolbox}
%\usepackage[backend=biber, style=verbose, hyperref=true, sorting=nyt]{biblatex}
\usepackage[backend=biber, citestyle=authoryear, hyperref=true, sorting=nty]{biblatex}
%\usepackage[backend=biber,authordate]{biblatex-chicago}
%\usepackage[backend=bibtex,style=verbose-trad2]{biblatex}
\addbibresource{sample.bib}
\setlength{\absleftindent}{0pt}
\setlength{\absrightindent}{0pt}
\abstractintoc
%\setlength\cftparskip{-2pt}
% PDF VIEW
% \geometry{total={210mm,297mm},
% left=25mm,right=25mm,%
% bindingoffset=0mm, top=25mm,bottom=25mm}
% PRINT
%\geometry{total={210mm,297mm},
%left=20mm,right=20mm,
%bindingoffset=10mm, top=25mm,bottom=25mm}
\OnehalfSpacing
\linespread{1.5}
%%% CHAPTER'S STYLE
\chapterstyle{verville}
\newlength{\aftertocskip}
\setlength{\aftertocskip}{1\baselineskip}% Space after ToC title
\renewcommand{\aftertoctitle}{\par\nobreak\vskip\aftertocskip}
%%\chapterstyle{ger}
%\chapterstyle{madsen}
%\chapterstyle{ell}
%%% STYLE OF SECTIONS, SUBSECTIONS, AND SUBSUBSECTIONS
\setsecheadstyle{\Large\bfseries\sffamily\raggedright}
\setsubsecheadstyle{\large\bfseries\sffamily\raggedright}
\setsubsubsecheadstyle{\bfseries\sffamily\raggedright}
%%% STYLE OF PAGES NUMBERING
%\pagestyle{companion}\nouppercaseheads
%\pagestyle{headings}
%\pagestyle{Ruled}
\pagestyle{plain}
\makepagestyle{plain}
\makeevenfoot{plain}{\thepage}{}{}
\makeoddfoot{plain}{}{}{\thepage}
\makeevenhead{plain}{}{}{}
\makeoddhead{plain}{}{}{}
\maxsecnumdepth{subsection} % chapters, sections, and subsections are numbered
\maxtocdepth{subsection} % chapters, sections, and subsections are in the Table of Contents
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
\begin{document}
\begin{abstract}
W
\end{abstract}
\clearpage
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
\chapter{Introduction}
tter\footcite{Abilova2016}.nce”
\chapter{Th}
\begin{itemize}
\item [--] nt"\footcite{Moe1984}.
\end{itemize}
\appendix
\printbibheading[
heading=bibintoc,
title={References}
]
\printbibliography[heading=subbibintoc,keyword={Secondary},title={Secondary Sources}]
\printbibliography[heading=subbibintoc,keyword={Primary},title={Primary Sources}]
\end{document}
And here is the sample.bib file:
@report{Abilova2016,
author = {Olga Abilova and Alexandra Novosseloff},
title = {Demystifying Intelligence in UN Peace Operations: Toward an Organizational Doctrine},
institution = {International Peace Institute},
year = {2016},
keywords = {Primary}
}
@article{Moe1984,
author = {Terry M. Moe},
title = {The New Economics of Organization},
journal = {American Journal of Political Science},
volume = {28},
%number = "",
pages = {739-777},
year = {1984},
%month = "",
%note = "",
keywords = {Secondary}
}
citestyle=authoryearquite unusual with an otherwise numeric bibliography. Unfortunately, the code shown so far is not enough to reproduce the behaviour you are seeing. It would help us greatly if you could expand it to a full example document starting with\documentclass, the relevant bits of the preamble and a few dummy citations and what else is necessary to see the issue in\begin{document}...\end{document}, a so-called MWE: https://tex.meta.stackexchange.com/q/228/35864 – moewe Mar 16 '19 at 11:16defernumbers=trueany more. Withdefernumbers=truethe numbering is as one would expect. See https://tex.stackexchange.com/q/333493/35864 – moewe Mar 16 '19 at 13:41memoirjust restarts the footnote number in each chapter from 1. Try\counterwithout{footnote}{chapter}, see https://tex.stackexchange.com/q/10448/35864. – moewe Mar 16 '19 at 14:00