有没有表示顺序的符号?
...指数,埃 ,被称为命令的額 在A,表示序数p i (a) = e i 。
答案1
从你的评论中可以清楚地看出你正在寻找订单操作员。
如果有人发现了这个问题,但正在寻找数量级:
\documentclass{article}
\DeclareRobustCommand{\orderof}{\ensuremath{\mathcal{O}}}
\begin{document}
$\orderof\left( 1234\right) =10^{3}$
\end{document}
答案2
我假设您不是在寻找某个符号,而是运算符ord
,如在Mark Siggers 的密码学课堂笔记. 您可以使用 定义自己的运算amsmath
符\DeclareMathOperator
:
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\ord}{ord}
\begin{document}
\ldots the exponent, $e_i$, is called the order of $p_i$ in $a$, denoted $\ord_{p_i}(a)=e_i$.
\end{document}