图名簿中的数学表达式

mathematical expression in figure name bookdown

是否可以在簿记文档的图形名称中添加数学表达式?

---
title: "Probabilidad"
output:
  bookdown::html_document2: default
---

here is some useless text

```{r fig.cap="lambda$"}
plot(cars)
```

我想将 lambda 希腊字母放在 fig.cap= 字段或其他更复杂的乳胶表达式中

尝试

fig.cap="<span>&lambda;</span>"

这通过 html 给出了 lambda 问题的答案,不确定这是否足以处理您需要的乳胶表达式。

您可以在图形标题中使用 LaTeX 数学表达式,例如,

---
title: "Probabilidad"
output:
  bookdown::html_document2: default
---

```{r fig.cap="$\lambda$"}
plot(cars)
```

It doesn't matter how complicated the math expression is:


```{r fig.cap="$\frac{\sum_{i=1}^n x_i}{n}$"}
plot(cars)
```