无法使用{biblatex}包和\ printbibliography加载Biobliography

时间:2015-12-03 14:56:57

标签: latex bibliography

这是我用于参考书目的代码

\usepackage[style=authoryear,sorting=ynt]{biblatex}

\addbibresource{bibliography.bib}

\ printbibliography

这是我的书目的一个例子:

@Article{Acosta2008,author = {Acosta, EG and Castilla, V and Damonte, EB}, title = {Functional entry of dengue virus into Aedes albopictusmosquito cells is dependent on clathrin-mediated endocytosis.}, journal = {J Gen Virol}, volume = {89}, number = {Pt 2}, pages = {474--484}, year = {2008}, abstract = {Entry of dengue virus 2 (DENV-2) into Aedes albopictus mosquito C6/36 cells was analysed using biochemical and molecular inhibitors, together with confocal and electron microscopy observations. Treatment with monodansylcadaverine, chlorpromazine, sucrose and ammonium chloride inhibited DENV-2 virus yield and protein expression, whereas nystatin, a blocker of caveolae-mediated endocytosis, did not have any effect. Using confocal microscopy, co-localization of DENV-2 E glycoprotein and the marker protein transferrin was observed at the periphery of the cytoplasm. To support the requirement of clathrin function for DENV-2 entry, overexpression of a dominant-negative mutant of Eps15 in C6/36 cells was shown to impair virus entry. The disruption of actin microfilaments by cytochalasin D also significantly affected DENV-2 replication. In contrast, microtubule disruption by colchicine treatment did not impair DENV-2 infectivity, suggesting that DENV-2 does not require transport from early to late endosomes for successful infection of mosquito cells. Furthermore, using transmission electron microscopy, DENV-2 particles of approximately 44-52 nm were found attached within electron-dense invaginations of the plasma membrane and in coated vesicles that resembled those of clathrin-coated pits and vesicles, respectively. Together, these results demonstrate for the first time that DENV-2 enters insect cells by receptor-mediated, clathrin-dependent endocytosis, requiring traffic through an acidic pH compartment for subsequent uncoating and completion of a productive infection.}, location = {}, keywords = {}}

我已经尝试了几种方法来加载存储在我的bibliography.bib文件中的参考书目而没有任何结果。

错误是:

  

输入行上的空书目

参考书目不是空的,书目与主要的'.tex'文件在同一个文件夹中

2 个答案:

答案 0 :(得分:0)

如果您的上述内容参考书目是bibliography.bib,以及

\documentclass{article}
\usepackage[style=authoryear,sorting=ynt]{biblatex}

\addbibresource{bibliography.bib}

\begin{document}

Text ... citation: \cite{Acosta2008}.

\printbibliography

\end{document}

是同一个文件夹中的main.tex,那么你应该没有问题。

确保编译一次,然后使用 Biber 编译参考书目,然后最后一次编译tex。

与我的最小代码面对面但主要是 - 检查编辑器的设置, Biber ,而不是 BibTex ,用于构建参考书目(例如:{ {3}})。

答案 1 :(得分:-1)

我遇到了同样的问题。但是当我在 [] 删除整个 usepackage 时它对我有用。

所以,对于\usepackage[style=alphabetic]{biblatex},我删除了中间部分,所以只有\usepackage{biblatex}。我运行它并且它起作用了。之后,我可以再次使用这个 \usepackage[style=alphabetic]{biblatex} 并且它也有效。