I'm having a very strange problem with LyX and biblatex. I made an bibliography file with JabRef which I integrate via biblatex package and entry in the header into to the tex file. But when there are more than 35 book entries in the biblatex file, LyX won't use it for the footnotes and bibliography. it is like the file is not there or couldn't be found. when i delete one entry, bib and footnotes are shown correctly. creating two bibliography files with less than 36 entries but both together more than 35 produces the same problem. Any suggestions?
I am using LyX 2.0.1 and JabRef 2.7.2 under Windows 7. Here is my header:
Code: Select all
%Kopf und Fußzeilen formatieren:
\lhead{}
\chead{}
\rhead{\thepage} % Seitenzahl rechts oben
\lfoot{}
\cfoot{}
\rfoot{}
%Linie unter Kopfzeile:
\renewcommand{\headrulewidth} {0.4pt}
%Linie über Fußzeile:
\renewcommand{\footrulewidth} {0.0pt}
% Fußnoten formatieren:
\deffootnote{2em}{2em}{\makebox[2em][l]{\thefootnotemark}}
\usepackage{microtype} %Randausgleich verbessern
\date{} % Bereitstellung des aktuellen Datums
%Anpassung der Datumsangabe:
\newcommand{\monthword}[1]{\ifcase#1\or Januar\or Februar\or März\or April\or Mai\or Juni\or Juli\or August\or September\or Oktober\or November\or Dezember\fi}
%Überschriften formatieren:
\usepackage{sectsty}
\sectionfont{\centering} %Hauptüberschrift mittig
\subsectionfont{\centering} %2. Überschrift mittig
%Abbildungsbeschriftung ändern:
\addto\captionsngerman{
\renewcommand{\figurename}{Abb.}
\renewcommand{\tablename}{Tab.}
}
\usepackage[labelfont=bf]{caption}
\captionsetup{margin=10pt,font=small,labelfont=bf}
%Biblatex laden:
\usepackage[bibstyle=D:/Documents/uni-sachen/4.Semester/eigenerStil,citestyle=authortitle-ibid,natbib=true]{biblatex}
\nocite{*} % Alle Einträge der Bibliographie-Datei im Quellenverzeichnis anzeigen
%Biblatex-Stil verändern:
\renewcommand{\nametitledelim}{: } %Trennzeichen zwischen Autoren und Titel
\renewcommand{\multinamedelim}{/} %Trennzeichen zwischen Autoren
\renewcommand{\finalnamedelim}{/} %Trennzeichen zu letztem Autor
\renewcommand{\subtitlepunct}{ - } % Trennzeichen zwischen Titel und Untertitel
\renewcommand{\newunitpunct}{, } % allgemeines Trennzeichen
\renewcommand{\labelnamepunct}{: } % Trennzeichen zwischen Autor und Titel im Quellenverzeichnis
\renewcommand{\bibitemsep}{10.0pt} %Lücke zwischen einzelnen Quellen im Quellenverzeichnis
% Namenssortierung in Fußnoten und Bibliographie ändern in Nachname, Vorname:
%Fußnoten und Zitate:
%\DeclareNameFormat{default}{% Vollzitate
%\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}%
%\usebibmacro{name:andothers}}
%\DeclareNameFormat{labelname}{% alle anderen Zitate
%\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}%
%\usebibmacro{name:andothers}}
%im Literaturverzeichnis:
\DeclareNameFormat{sortname}{% Bibliographie
\iffirstinits
{\usebibmacro{name:last-first}{#1}{#4}{#5}{#7}}
{\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}}%
\usebibmacro{name:andothers}}
%Quellenverzeichnis laden:
\bibliography{D:/Documents/uni-sachen/4.Semester/Master-Arbeit/masterbib}