`natbib` 中的条目标题中的大写字母不是大写

`natbib` 中的条目标题中的大写字母不是大写

IEEEtranN在论文中使用了参考书目格式。这是我为一个参考文献得到的输出。

在此处输入图片描述

即使在使用解决方案后也会发生这种情况参考书目中的下标和大写字母被隐藏

我尝试用另一个名称保存原始文档,保留序言不变,并删除文档中的所有内容,然后尝试再次引用相同的参考文献,结果

在此处输入图片描述

这仅适用于一些参考文献。解决方案参考书目中的下标和大写字母被隐藏 (使用{}我想要大写的字母)似乎对大多数参考文献有用,但并非全部。

MWE 运行良好,但在实际文档本身中我没有得到所需的输出。当然,我无法逐步删除文档的部分内容并多次重新编译,因为每次编译时我都需要等待 2 到 3 分钟。

\begin{filecontents*}{sample.bib}
@techreport{NRELWestern2015,
    title = {{Western Wind and Solar Integration {S}tudy {P}hase 3{A}: Low Levels of Synchronous Generation}},
    author = {Miller, Nicholas and Leonardi, Bruno and D'Aquila, Robert},
    group = {NERC},
    institution = {NERC},
    year = {2015},
    month = {Nov},
    Date-Added = {2015},
    Date-Modified = {2015}
}
\end{filecontents*}

\documentclass[]{book}

\usepackage[x11names]{xcolor}

\usepackage[round]{natbib} % natbib is very common and reliable bibliography management package

\usepackage{hyperref}
\hypersetup{citecolor=DodgerBlue3, citebordercolor=DodgerBlue3, colorlinks=true} % link color of citations goes here
                \hypersetup{breaklinks=true}

\begin{document}

\cite{NRELWestern2015}

\newpage
\bibliographystyle{IEEEtranN} % style of bibliography (here you specify that you want authoryear or numeric citation)
\bibliography{sample} % defines the file that contains information about the article you cite

\end{document}

相关内容