这是我在参考书目中使用的代码
\usepackage[style=authoryear,sorting=ynt]{biblatex}
\addbibresource{bibliography.bib}印刷书目
这是我的参考书目的一个例子:
@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‘文件位于同一个文件夹中
发布于 2015-12-03 19:26:46
如果具有上述内容的参考书目为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,用于构建参考书目(例如:TeXstudio)。
发布于 2021-06-19 10:48:58
我也有同样的问题。但当我删除了[]在usepackage的全部内容时,它对我起了作用。
所以,对于\usepackage[style=alphabetic]{biblatex},我删除了中间部分,所以只有\usepackage{biblatex}。我查过了,结果成功了。在那之后,我可以再次使用这个\usepackage[style=alphabetic]{biblatex},它也起作用了。
https://stackoverflow.com/questions/34069138
复制相似问题