重现 chem-angew 书目风格

重现 chem-angew 书目风格

我正在尝试使用chem-angew已记录的参考书目样式这里。但是我得到的结果与文档中的结果不一样。
文档中的参考书目中没有其他缩写(如Volpp.),而它们确实出现在我的示例中。有人知道这是为什么吗?我该如何解决这个问题?

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

结果是

OA Lenis-Rojas、C. Roma-Rodrigues、AR Fernandes、F. Marques、D. Pérez-Fernández、J. Guerra-Varela、L. Sánchez、D. Vázquez-García、M. López-Torres、A. Fernández、JJ Fernández,《无机化学》2017,56,7127–7144。

仔细看看chem-angew样式文档表明样式显示@books 和@collections 的体积为“Vol.”,但 s 不显示。例如,参见 [16]、[22]、[36] 或和[18] 和 [21]@article的示例。@inbook@incollection

顺便说一句,我.bib从 ACS 主页上获取了基础文件,并惊喜地发现他们的导出器似乎没有犯下其他出口国过于急于承诺。不过,您可能必须调整位的格式RuII(bipy)2(当然,chem-angew不会打印标题,但以防您以后需要它)。

相关内容