数学模式的字距调整/字母间距

数学模式的字距调整/字母间距

考虑以下两个方程:

\begin{equation}
    o^{AR}_{i,t} = w^{AR}_i x_t + o^{AR}_{i+1,t-1}
\end{equation}

\begin{equation}
    o^{MA}_{i,t} = w^{MA}_i x_t + o^{MA}_{i+1,t-1}
\end{equation}  

在此处输入图片描述

“AR”和“MA”实际上是首字母缩略词,应该放在一起,中间没有空隙。我知道数学模式将每个字母视为一个个体,并没有正确地调整它们的字距。这一点在“M”和“A”之间的间距比“A”和“R”之间的间距大这一事实中尤为明显。

有没有什么方法可以让数学模式将字母连接得更整齐?

答案1

根据评论,如果它们经常使用,我建议使用\text{MA}\mathrm{MA}为它们定义一个宏:

在此处输入图片描述

参考:

笔记:

  • 在这个特定案例中确实如此不是\DeclareMathOperator根据问题使用起来有意义,这些是首字母缩略词而不是运算符。

代码:

\documentclass{article}
\usepackage{amsmath}

\newcommand*{\AR}{\text{AR}}%
\newcommand*{\MA}{\mathrm{MA}}%

\begin{document}
\begin{equation}
    o^{\AR}_{i,t} = w^{\AR}_i x_t + o^{\AR}_{i+1,t-1}
\end{equation}

\begin{equation}
    o^{\MA}_{i,t} = w^{\MA}_i x_t + o^{\MA}_{i+1,t-1}
\end{equation} 
\end{document}

相关内容