Ich habe eine .tex-datei, aus der eine Bibliographie erstellt werden soll. Also einfach eine Literaturliste mit allen Publikationen eines bestimmten Autors, sortiert nach Erscheinungsform (Monographie, Aufsatz usw.). Die Sortierung nach Erscheinungsform benutzt Keywords zur Zuordnung der richtigen Kategorien.
Vor ein paar Monaten konnte ich das ganze noch problemlos setzen, jetzt gibts BibLaTeX folgende Fehler aus:
The 8-bit codepage and sorting file: 88591lat.csf The top-level auxiliary file: xy.aux I found no \citation commands---while reading file xy.aux I found no \bibdata command---while reading file xy.aux I found no \bibstyle command---while reading file xy.aux (There were 3 error messages)
Beispiel:
\documentclass[ fontsize=11pt, a4paper, oneside, toc=bibliography, headsepline=false, footsepline=false, titlepage=false]{scrartcl} \usepackage[english]{babel} \usepackage[mac-roman]{inputenx} \usepackage[T1]{fontenc} \usepackage[onehalfspacing]{setspace} \pagestyle{headings} \setkomafont{pageheadfoot}{\normalfont\normalcolor\small} \setkomafont{pagenumber}{\normalfont} \usepackage[style=authoryear, backend=biber]{biblatex} \usepackage[babel]{csquotes} \addbibresource{../xyz/xyz.bib} \usepackage{hyperref} \title{Bibliography xyz} \author{Ich} \date{\today} % Dokument: \begin{document} \maketitle \addsec{Introduction} Blah blah blah. \nocite{*} \defbibheading{EF-Book}[Books]{\section{#1}} \defbibheading{EF-Journal-Article}[Journal Articles]{\section{#1}} \defbibheading{EF-Other}[Other]{\section{#1}} \printbibliography[keyword= EF-Book, heading=EF-Book] \printbibliography[keyword= EF-Journal-Article, heading=EF-Journal-Article] \printbibliography[keyword= EF-Other, heading=EF-Other] \end{document}
Vielen Dank schon mal und schöne Grüße!