I'm writing my thesis and trying to get separate reference indexing for each chapter. Working off a friend's template, it seems I'm looking for the \ExecuteBibliographyOptions options. However, when I add that line, no bibliography is produced. The warning I get is:
biblatex Warning: Please (re)run BibTeX on the file(s):
(biblatex) debuggingbib1-blx
(biblatex) and rerun LaTeX afterwards.
Tried a BUNCH of things. Switching to biber did not work, probably because I'm using texworks and did not implement the arara hack. Note again, it works fine (sans my options) if I comment out the executebibliographyoptions line. Thoughts?
\documentclass[12pt,letterpaper,oneside]{memoir}
\usepackage[backend=bibtex,style=nature]{biblatex}
\ExecuteBibliographyOptions{url=false,refsection=chapter,maxnames=99}
\usepackage{filecontents}
\begin{filecontents}{biblib.bib}
@article{Novick1957,
author = {Novick, A and Weiner, M},
file = {:C$\backslash$:/Users/Administrator/Desktop/Dropbox/Papers Mendeley/Novick, Weiner - 1957 - Enzyme induction as an all-or-none phenomenon.pdf:pdf},
journal = {Proceedings of the National Academy of \ldots},
pages = {553--566},
title = {{Enzyme induction as an all-or-none phenomenon}},
url = {http://www.ncbi.nlm.nih.gov/pmc/articles/PMC528498/},
year = {1957}
}
\end{filecontents}
\addbibresource{biblib.bib}
\begin{document}
\chapter{Introduction}\label{chap:introduction}
\section{A brief history of non-genetic variability}
Although observations of cell-to-cell expression variability are relatively new, with one prescient exception \cite{Novick1957},
\section{bibliography}
\printbibliography[heading=none]
\end{document}
bibtex debuggingbib1-blx. Alterntively, change thebackendtobiber. Compile with pdflatex and thenbiber debugging bib. – Guido Jul 22 '14 at 20:14