I have a feeling that there is an obvious answer to this question that I'm somehow managing to miss. However, I've tried most of the commands in the biblatex documentation and I still can't figure it out.
What I want to do is reset the count for my footnotes and citations between chapters. In addition I also want ibid's, opcit's etc to start again at the beginning of a new chapter.
I'm currently using XeLaTeX with biblatex. My preamble is:
\documentclass[12pt,oneside]{book}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage[style=verbose-trad1=true,natbib=true,sortcites=true]{biblatex}
\bibliography{bib.bib}
%Additional Stuff that I don't think should influenec the bibliography, but is here just in case
\interfootnotelinepenalty=10000
\usepackage{fontspec}
\usepackage{titlesec}
\defaultfontfeatures{Ligatures=TeX}
\usepackage{sectsty}
\allsectionsfont{\sffamily}
\setmainfont{Lyon Text Regular No. 2}
\setsansfont{Lyon Display Light}
\usepackage[margin=3.5cm]{geometry}
\pretolerance=5000
\tolerance=1000
\usepackage{setspace}
\usepackage{graphicx}
Having read that citations should automatically reset elsewhere I thought it must be something peculiar to me or a package class. However, I've just realized that it was because I was using \chapter*{Title} rather than \chapter{Title}.
– Timothy Monteath Apr 27 '12 at 03:23