我正在尝试使用chem-angew
已记录的参考书目样式这里。但是我得到的结果与文档中的结果不一样。
文档中的参考书目中没有其他缩写(如Vol
或pp.
),而它们确实出现在我的示例中。有人知道这是为什么吗?我该如何解决这个问题?
\documentclass{article}
\usepackage[backend=biber,style=chem-angew]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{Sources.bib}
@book{Paper,
author = { Lenis-Rojas, O. A. and Roma-Rodrigues, C. and Fernandes, A. R.},
title = {Inorganic Chemistry},
year = {2017},
volume = {56},
pages = {7127-7144}
}
\end{filecontents}
\bibliography{Sources}
\begin{document}
In \cite{Paper} one can see stuff
\printbibliography
\end{document}
因此,基本上我想阻止 biblatex 在我的参考书目中添加任何额外的缩写,以实现在样式文档中找到的chem-angew
结果
答案1
根据https://doi.org/10.1021/acs.inorgchem.7b00790您要引用的来源实际上是@article
而不是@book
。该.bib
条目应该大致如下
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber,style=chem-angew]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{lenisrojas,
author = {Lenis-Rojas, Oscar A. and Roma-Rodrigues, Catarina
and Fernandes, Alexandra R. and Marques, Fernanda
and Pérez-Fernández, David and Guerra-Varela, Jorge
and Sánchez, Laura and Vázquez-García, Digna
and López-Torres, Margarita and Fernández, Alberto
and Fernández, Jesús J.},
title = {Dinuclear RuII(bipy)2 Derivatives: Structural, Biological,
and in Vivo Zebrafish Toxicity Evaluation},
journal = {Inorganic Chemistry},
volume = {56},
number = {12},
pages = {7127-7144},
year = {2017},
doi = {10.1021/acs.inorgchem.7b00790},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
In \cite{lenisrojas} one can see stuff
\printbibliography
\end{document}
结果是
仔细看看chem-angew
样式文档表明样式显示@book
s 和@collection
s 的体积为“Vol.”,但 s 不显示。例如,参见 [16]、[22]、[36] 或和[18] 和 [21]@article
的示例。@inbook
@incollection
顺便说一句,我.bib
从 ACS 主页上获取了基础文件,并惊喜地发现他们的导出器似乎没有犯下其他出口国过于急于承诺。不过,您可能必须调整位的格式RuII(bipy)2
(当然,chem-angew
不会打印标题,但以防您以后需要它)。