I writing a document in LyX (2.0.5) with references. For displaying references I use biblatex.
(http://wiki.lyx.org/BibTeX/Biblatex). My latex environment is MiKTeX 2.9
Since I switched my Desktop, converting following tex files to pdf doesn't work anymore. Converting the Lyx file (which following tex file is exported from) doesn't work either.
Here is my tex file:
%% LyX 2.0.5 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[11pt,oneside,chapterprefix=on]{scrbook}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[T1]{fontenc}
\usepackage[cp1252]{inputenc}
\usepackage[a4paper]{geometry}\geometry{verbose,tmargin=3cm,bmargin=3cm,lmargin=2cm,rmargin=2cm,headheight=1cm,headsep=1cm,footskip=1.2cm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{amsmath}
\usepackage{fixltx2e}
\usepackage{setspace}
\onehalfspacing
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=true,pdfborder={0 0 1},backref=false,colorlinks=false]
{hyperref}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{figure}{section}
\numberwithin{table}{section}
\numberwithin{equation}{section}
\@ifundefined{date}{}{\date{}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage[style=alphabetic,natbib=true,backend=biber]{biblatex}
\bibliography{list-4.bib}
\typeout{File: \jobname.bcf}
\makeatother
\begin{document}
\chapter{Introduction}
Test (\citealp[see][p.1]{Alter1980})
\chapter{Literature}
\printbibliography
\end{document}
My bib file look like this:
@book{Alter1980,
author = {Alter, Steven L.},
year = {op. 1980},
title = {{D}ecision support systems: {C}urrent practice and continuing challenges},
address = {Reading Mass. [etc.]},
publisher = {Addison-Wesley Publ},
isbn = {0-201-00193-4}
}
Hope that I haven't forget any neccessary information. Hope, someone of you have a hint where the problem may lies ... I have non any more.
biber myfilecommand there and it fixed the problem. Such an annoying bug! Shouldn't LyX have a way to force this? – Fuhrmanator Dec 07 '16 at 16:22