为什么 LaTeX 提供的 ACS 样式不包含文章标题

为什么 LaTeX 提供的 ACS 样式不包含文章标题

我都尝试过了:

\usepackage[style=chem-acs]{biblatex}

\bibliographystyle{achemso}

并且没有一个给出文章的标题。然而ACS 风格指南明确指定了这些信息应该存在。这难道不是这些包试图提供的风格吗,还是我遗漏了其他东西?


例子

参考文献:

@BOOK {KandR, AUTHOR  = "Kernighan, Brian W. and Ritchie, Dennis M.", TITLE   =
"{The C Programming Language Second Edition}", PUBLISHER = "Prentice-Hall,
Inc.", YEAR = 1988 } 
@ONLINE {CUEDCplusplus, AUTHOR  = "Love, T.P.", TITLE   =
"{CUED C++}", URL = "http://www-h.eng.cam.ac.uk/help/tpl/languages/C++.html",
URLYEAR = 2010, PRESORT="aa" } 
@article{Akamatsu:2011dz, Abstract = {The
physicochemical properties of candidate compounds play important roles in the 
design of new pesticides. Pesticides must be absorbed by pests, be transported
to the target site, and then interact with proteins. Hydrophobicity is very
important for these processes. Log P, where P is the partition coefficient in
the 1-octanol/water system, is commonly used as a hydrophobic descriptor and 
correlates with membrane permeation and transport. It was recently reported
that permeability by the parallel artificial membrane permeation assay (PAMPA)
could be used to predict human oral absorption of passively transported
compounds. PAMPA, which is a rapid high-throughput screening system, may be
useful to predict pesticide absorption because PAMPA permeability can be
calculated using log P and other parameters. Electronic and structural
properties as well as hydrophobicity are important factors for protein-ligand
interaction. To show the importance of physicochemical properties, the classic
QSAR and CoMFA of neonicotinoids and prediction of bioavailability of
pesticides in terms of membrane permeability in comparison with drugs are 
described.},    Author = {Akamatsu, Miki}, Date-Added = {2012-07-06 13:37:41
+0200}, Date-Modified = {2012-07-06 13:37:41 +0200}, Doi = {10.1021/jf102525e},
Journal = {J Agric Food Chem}, Journal-Full = {Journal of agricultural and food
chemistry}, Mesh = {Anabasine; Animals; Biological Availability; Cell Membrane
Permeability; Drug Design; Humans; Imidazoles; Insecticides; Nitro Compounds;
Pesticides; Physicochemical Phenomena; Quantitative Structure-Activity
Relationship; Receptors, Nicotinic},    Month = {Apr}, Number = {7}, Pages =
{2909-17}, Pmid = {20879794}, Pst = {ppublish}, Title = {Importance of
physicochemical properties for the design of new pesticides}, Volume = {59},
Year = {2011}, Bdsk-Url-1 = {http://dx.doi.org/10.1021/jf102525e}}

测试.tex:

\documentclass{article} 
\usepackage[style=chem-acs]{biblatex}
\defbibnote{books}{Only books!}
\bibliography{refs} 
\begin{document} 
foo\cite{Akamatsu:2011dz}
\printbibliography[prenote=books, type=book] 
\printbibliography 
\end{document}

看起来像什么

答案1

这是一个包选项(来自achemso文档:)

articletitle选项是布尔值,用于设置所引用论文的标题是否出现在参考书目中。默认为articletitle=false样式achemsoarticletitle=true样式biochem

同样地,在biblatex-chem

各个期刊对文章标题的使用各不相同。布尔选项articletitle可用于控制此行为。chem-acschem-angewchem-rsc样式的标准设置已关闭此选项,而chem-biochem将此选项设置为 true。

答案2

\documentclass[journal=jacsat,manuscript=article]{achemso}
\setkeys{acs}{articletitle=true}

答案3

在第一行尝试这个:

\documentclass[journal=jcisd8,manuscript=article]{achemso}

jcisd8指化学信息与建模杂志。

将其替换为您的日记代码

相关内容