我该如何排版以下表达式?
答案1
此代码应该能满足您的要求:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation*}
\left\{\mathrm{O}^{\left(i\right)},\mathrm{e}^{\left(i\right)}\right\}_{i=1}^M
\end{equation*}
\end{document}
答案2
要完全重现您发布的屏幕截图,您需要(Heiko Oberdiek 在另一条评论中指出的那样):
\left\{
以及\right\}
自动缩放的花括号\mathbf{O}
并将\mathbf{e}
“O”和“e”以粗体显示
完整的 MWE (最小工作示例):
\documentclass{article}
\begin{document}
\[
\left\{ \mathbf{O}^{(i)},\mathbf{e}^{(i)} \right\}_{i=1}^M
\]
\end{document}