内联代码和内联LaTeX,R Markdown Pandoc错误43

时间:2018-02-23 06:03:22

标签: r r-markdown pandoc

我现在已经遇到过这个问题了几次,但每当我尝试在我的Rmd文件中包含内联LaTeX和内联R代码时,我都会收到Pandoc错误43。从来没有能够找到除手动之外的解决方法添加R代码将会是什么。

---
title: "HW4"
date: "2/23/2018"
header-includes:
  - \usepackage{amsmath}
  - \usepackage{amsthm}
output: 
  pdf_document
---

```{r}
x_bar <- 4
```

The blue line above is the true $\lambda = 4$, and the red line is our 
$\hat{\lambda}_{MLE} = \bar{x} = $ `r x_bar`.

错误:

l.192 \$ \hat{\lambda}

pandoc: Error producing PDF
Error: pandoc document conversion failed with error 43
Execution halted

1 个答案:

答案 0 :(得分:0)

将内联R表达式移动到$符号中:

```{r}
x_bar <- 4
```

$\hat{\lambda}_{MLE} = \bar{x} = `r x_bar`$.

Rmd输出:

enter image description here

来源:https://github.com/rstudio/rmarkdown/issues/385#issuecomment-77309571

或者,将内联R代码留在外面,但在第二个$之前删除尾随空格。