after long hours of searching for a solution and going through several posts addressing similar topics, I hope that someone more knowledgeable than me can help me.
What I am trying to achieve is a separate bibliography for each chapter using biblatex' refsection.
My main file MWE looks as follows:
Code: Select all
\documentclass[paper=a4,11pt,draft=false,index=totoc,version=last,headsepline]{scrbook}\usepackage[T1]{fontenc}\usepackage[latin1]{inputenc}\usepackage[backend=bibtex8,style=authoryear-icomp,sortcites=false,isbn=false,citereset=section,uniquename=init,maxcitenames=3,maxbibnames=40,hyperref,pagetracker=spread,ibidtracker=constrict,abbreviate=true,refsection=section]{biblatex}\addbibresource{References.bib}\begin{document}\include{Subchapter1}\end{document}
Code: Select all
\chapter{Tescht1}\begin{refsection}\parencite{AnyReference}\printbibliography[heading=subbibliography]\end{refsection}
What I understood from the various post is, that the aux-file for each refsection needs to be run by bibtex on its own, in order to generate separate bib-files. Did I get that right?
So, what I did was to compile the main file, the aux-file is generated. Then I ran bibtex on the subchapter. A bbl-file was generated, is, however, empty. Then I ran the whole document twice.
The log-file reads -- at least in my eyes -- that everything is working fine, except for the fact that the citation is undefined. This is no path finding issue, no backend issue, and independent of what reference is used -- in the document I want to compile none of the references is "defined".
Code: Select all
...Package biblatex Info: Trying to load bibliography style 'authoryear-icomp'...Package biblatex Info: ... file 'authoryear-icomp.bbx' found.(C:\Users\Alitzanda\AppData\Roaming\MiKTeX\2.9\tex\latex\biblatex\bbx\authoryear-icomp.bbxFile: authoryear-icomp.bbx 2012/08/17 v2.2 biblatex bibliography style (PK/JW/AB)Package biblatex Info: Trying to load bibliography style 'authoryear'...Package biblatex Info: ... file 'authoryear.bbx' found.(C:\Users\Alitzanda\AppData\Roaming\MiKTeX\2.9\tex\latex\biblatex\bbx\authoryear.bbxFile: authoryear.bbx 2012/08/17 v2.2 biblatex bibliography style (PK/JW/AB)Package biblatex Info: Trying to load bibliography style 'standard'...Package biblatex Info: ... file 'standard.bbx' found.(C:\Users\Alitzanda\AppData\Roaming\MiKTeX\2.9\tex\latex\biblatex\bbx\standard.bbxFile: standard.bbx 2012/08/17 v2.2 biblatex bibliography style (PK/JW/AB)\c@bbx:relatedcount=\count287)))Package biblatex Info: Trying to load citation style 'authoryear-icomp'...Package biblatex Info: ... file 'authoryear-icomp.cbx' found.(C:\Users\Alitzanda\AppData\Roaming\MiKTeX\2.9\tex\latex\biblatex\cbx\authoryear-icomp.cbxFile: authoryear-icomp.cbx 2012/08/17 v2.2 biblatex citation style (PK/JW/AB)Package biblatex Info: Redefining '\cite'.Package biblatex Info: Redefining '\parencite'.Package biblatex Info: Redefining '\footcite'.Package biblatex Info: Redefining '\footcitetext'.Package biblatex Info: Redefining '\smartcite'.Package biblatex Info: Redefining '\textcite'.Package biblatex Info: Redefining '\cites'.Package biblatex Info: Redefining '\parencites'.Package biblatex Info: Redefining '\footcites'.Package biblatex Info: Redefining '\footcitetexts'.Package biblatex Info: Redefining '\smartcites'.Package biblatex Info: Redefining '\textcites'.)Package biblatex Info: Trying to load configuration file...Package biblatex Info: ... file 'biblatex.cfg' found.(C:\Users\Alitzanda\AppData\Roaming\MiKTeX\2.9\tex\latex\biblatex\biblatex.cfgFile: biblatex.cfg

Thanks a lot for your ideas in advance!