我怎样才能将项 v<-{0,1}^n 添加到公式中,如屏幕截图所示?
$ Pr_{v \leftarrow {0,1}^n} [ Fre(A,B,C) = Ja ] \leq \frac{1}{2} $
编辑代码:
\documentclass{article}
\usepackage{ amssymb }
\begin{document}
\begin{itemize}
\item[1.] $\underset{v \leftarrow {0,1}^n}{\Pr} \Big[ \texttt{Fre}(A,B,C) = \texttt{Ja} \Big] \leq \frac{1}{2}$
\end{itemize}
\end{document}
答案1
答案2
我建议你使用\Pr
宏,它放置它的下标参数(“约束”)以下而不是在 displaystyle-math 模式下放在一边。对于内联样式数学模式,请\limits
在 之后添加\Pr
。
一个单独的问题:用于\mathtt
显然需要以等宽(又名“电传打字机”)字体设置的字母。
\documentclass{article}
\begin{document}
\begin{tabular}{ll}
inline-style math: use \texttt{\string\limits}&
$
\Pr\limits_{v\gets\{0,1\}^n} [ \mathtt{Fre}(A,B,C) = \mathtt{Ja} ] \leq \frac{1}{2} .
$ \\[3ex]
display-style math &
$\displaystyle
\Pr_{v\gets\{0,1\}^n} [ \mathtt{Fre}(A,B,C) = \mathtt{Ja} ] \leq \frac{1}{2} .
$
\end{tabular}
\end{document}