我需要输入一个数学公式及其符号。公式有效,但表示法格式不正确。你能帮我吗?谢谢。
$$
(x)approxfrac{phiprime (x)times(1-pprime)times p}
{phiprime(x)times(1-pprime)times p +(1-phiprime(x)times
pprimetimes(1-p)}\
$$
$$p$$: notation1
$$pprime$$: notation2
$$phi$$: notation3
$$phiprime$$: notation4
您正在使用强制在方程周围换一条新线的$$
。使用单个$
创建内联表达式,这正是您想要的。因此,将代码更改为:
$$
(x)approxfrac{phiprime (x)times(1-pprime)times p}
{phiprime(x)times(1-pprime)times p +(1-phiprime(x)times
pprimetimes(1-p)}\
$$
$p$: notation1
$pprime$: notation2
$phi$: notation3
$phiprime$: notation4
或者,为了更好地分解线条,您可以使用<br/>
标签
$$
(x)approxfrac{phiprime (x)times(1-pprime)times p}
{phiprime(x)times(1-pprime)times p +(1-phiprime(x)times
pprimetimes(1-p)}\
$$
$p$: notation1<br/>
$pprime$: notation2<br/>
$phi$: notation3<br/>
$phiprime$: notation4<br/>
您还提到了右对齐 - 为此,您需要使用div
并对齐它,如下所示:
$$
(x)approxfrac{phiprime (x)times(1-pprime)times p}
{phiprime(x)times(1-pprime)times p +(1-phiprime(x)times
pprimetimes(1-p)}\
$$
<div align="right">
$p$: notation1<br/>
$pprime$: notation2<br/>
$phi$: notation3<br/>
$phiprime$: notation4<br/>
</div>
请注意,后两种解决方案仅在实时笔记本中真正有效,我认为HTML输出(Markdown也可以(。如果您打算之后转换为乳胶/pdf,那么您将需要第一个解决方案或以下解决方案:
$$
(x)approxfrac{phiprime (x)times(1-pprime)times p}
{phiprime(x)times(1-pprime)times p +(1-phiprime(x)times
pprimetimes(1-p)}\
$$
$begin{align}
p: notation1
newline
pprime: notation2
newline
phi: notation3
newline
phiprime: notation4
end{align}
$
使用此解决方案,您可以进行左对齐(在align
环境周围使用单$
(或中心对齐(在align
环境中使用$$
(,但我认为您无法正确对齐。此外,通过这种方式,notation
是数学字体而不是常规字体,这可能是不需要的。