当我输入$\Delta$
参考时bibtext
,输出很小$\delta$
。如何纠正?
答案1
我认为此行为取决于您使用的 bibtex 样式文件。无论如何,您应该能够通过用花括号括起来来强制它保留大写 $\Omega$:
{$\Omega$}
答案2
确实,大小写按照标准样式发生了改变。您必须使用括号来防止大小写改变。
例子:
\begin{filecontents*}{\jobname.bib}
@article{test,
author={A. Uthor},
title={Title with $\Delta$-Cauchy},
journal={Journal},
year=2020,
}
\end{filecontents*}
\documentclass{article}
\begin{document}
\cite{test}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{document}
该filecontents*
环境仅用于使示例自成一体。
修复 bib 条目
@article{test,
author={A. Uthor},
title={Title with {$\Delta$-Cauchy}},
journal={Journal},
year=2020,
}
换句话说,在想要保留大写字母的单词周围添加括号。