没有打印参考书目,但显示引用 bibtex key

没有打印参考书目,但显示引用 bibtex key

我在 LyX (2.0.5) 中编写了一篇包含参考文献的文档。为了显示参考文献,我使用了biblatex。 (http://wiki.lyx.org/BibTeX/Biblatex)。我的 latex 环境是 MiKTeX 2.9

自从我更换了桌面后,将以下 tex 文件转换为 pdf 就不再有效了。转换 Lyx 文件(以下 tex 文件是从该文件导出的)也不起作用。

这是我的 tex 文件:

%% 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}

我的 bib 文件如下所示:

@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}
}

希望我没有忘记任何必要的信息。希望你们中有人能提示一下问题可能出在哪里……我再也找不到了。

答案1

我不知道这是否可行。对我来说,这就像在黑暗中摸索,因为我不使用LyX。但我认为你必须biber通过单击将你的参考书目处理器更改为

工具 > 首选项 > 输出 > LaTeX > 参考书目生成 > 处理器 > Biber

如果这不起作用,您必须biber通过终端手动运行文件。

cd到你的工作目录并运行

biber myfile没有文件扩展名。然后ctrl-R再次尝试LyX编译和查看您的 pdf。

此外,biblatex\bibliography替换\addbibresource

相关内容