
當我輸入$\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*
只是為了使範例獨立。
修復號碼布條目
@article{test,
author={A. Uthor},
title={Title with {$\Delta$-Cauchy}},
journal={Journal},
year=2020,
}
換句話說,在您想要保留大寫的單字周圍添加大括號。