答案1
写
\mathrm{IOU}^{\mathrm{truth}}_{\mathrm{pred}}
这\mathrm
使得字母直立。
答案2
如果你输入的是数学模式下的文本,请使用- 它确保其内容正确\textup
显示up
text
,即使当前字体不是直立的,例如斜体(某些环境中的情况theorem
)。对于上/下标,使用^
和_
;这将确保放置在对象的右上方/下方:
\documentclass{article}
\usepackage{mathtools}
\DeclarePairedDelimiter{\Probability}{(}{)}
\newcommand{\Prob}{\Pr\Probability}
\begin{document}
\[
\Prob{\textup{Class}_i \mid \textup{Object}} \times
\Prob{\text{Object}} \times
\textup{IOU}^{\textup{truth}}_{\textup{pred}}
= \Prob{\textup{Class}_i} \times
\textup{IOU}^{\textup{truth}}_{\textup{pred}}
\]
\end{document}