Rmarkdown 中的方程式问题

Equation trouble in Rmarkdown

不断收到消息:

! Missing { inserted. <to be read again> \left l.70 \end{frame}

when 运行 下面的 R markdown 文件(在 RStudio 中)。我花了几个小时拔头发试图找出原因?公式在预览中呈现。

---
title: "Compile Please"
output: beamer_presentation
---

## This Equation is Poison for Rmd

$$ f(x) = \left( 1 + \frac{x}{m - \alpha} \right) ^ \left( x \right) $$ 

可能对那里的空间很挑剔。这个 "tighter" 版本带有明确的括号以保护指数在这里工作:

$$ f(x) = \left( 1 + \frac{x}{m - \alpha} \right)^{\left( x \right)} $$