更改使用 Mendeley 创建的书目中的出版物标题的大小写

更改使用 Mendeley 创建的书目中的出版物标题的大小写

我想将参考文献中的标题格式化为标题大小写。但是,当我生成参考书目时,只有一些参考文献遵循所需的格式。

我的 .bib 文件是从 Mendeley 导出的,我用于论文的模板也来自该achemso包。到目前为止,我已尝试遵循此帖子中的建议:Biblatex 更改标题的大小写。但是,即使注释掉,使用仍会biblatex与 发生冲突。mciteplus

我已包含 MWE、.bib脚本和输出图像。如您所见,参考文献 1 的格式正确,但参考文献 2 格式不正确。虽然可以通过编辑 来实现参考文献 2 中的标题大小写.bib,但当参考文献很多时,这是不可行的。

是否可以轻松地将参考文献部分的所有标题变为标题大小写而不影响文档的其余部分?

平均能量损失

\RequirePackage[hyphens]{url}
\documentclass[journal=chreay,manuscript=review,layout=twocolumn]{achemso}

\usepackage{chemformula} % Formula subscripts using \ch{}
\usepackage[T1]{fontenc} % Use modern font encodings
\usepackage{array}
\usepackage[hidelinks]{hyperref}%adds hyperlinks to references in text. [hidelinks] removes blue boxes. 
\usepackage{mciteplus}
%\mciteErrorOnUnknownfalse
\usepackage{multirow}
\usepackage{gensymb}
\usepackage[section]{placeins}%Allows you to permanently fix figures.
%\sloppy%Makes sure that none of the text exceeds text width. Useful if have long chemical words.
%\usepackage[style=chem-acs, backend=biber]{biblatex}
%\addbibresource{library.bib}
%\DeclareFieldFormat{titlecase}{#1}


\newcommand*\mycommand[1]{\texttt{\emph{#1}}}

\title{Title}

\begin{document}
    
\section{Part 1}

Text \cite{ZapataHerrera2016}
Text \cite{Henglein1998}

\bibliography{library2}

\end{document}

。围兜

@article{ZapataHerrera2016,
abstract = {Text},
author = {{Zapata Herrera}, Mario and Aizpurua, Javier and Kazansky, Andrey K. and Borisov, Andrei G.},
doi = {10.1021/acs.langmuir.6b00112},
issn = {15205827},
journal = {Langmuir},
number = {11},
pages = {2829--2840},
title = {{Plasmon Response and Electron Dynamics in Charged Metallic Nanoparticles}},
volume = {32},
year = {2016}
}
@article{Henglein1998,
abstract = {Text},
author = {Henglein, Arnim and Meisel, Dan},
doi = {10.1021/la981278w},
issn = {07437463},
journal = {Langmuir},
number = {26},
pages = {7392--7396},
title = {{Radiolytic control of the size of colloidal gold nanoparticles}},
volume = {14},
year = {1998}
}

提前致谢!

相关内容