r Markdown 公式无法在 Word 2016 中正确编织
r markdown equation cannot knit correctly in Word 2016
我遇到了一个奇怪的情况。温度方程无法在 Word 文档(Word 2016)中正确编织,而另一个方程则工作正常。我正在展示屏幕截图,并希望对这里的问题提出建议。我感谢任何帮助。 :-D
Word 输出中的方程式:
RStudio 中显示的等式:
等式显示在 HTML 输出中:
这里我使用了一个通用脚本来测试方程代码。
---
title: "test_equation"
date: "9/16/2020"
output: word_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
The equation doesn't show in the Word:
$$\Delta Temperature = \frac{\Delta Heat}{Density\times{Specific}\space{Heat}\times{\Delta Flow}\space{Volume}}$$
-------------------------------------------
The equation shows in the Word:
$$ME = \frac{1}{n}\sum(X_{sim} - X_{obs})$$
是 \space
导致了问题。 \text
在等式中添加空格时有效。
正确的方程代码:
$$\Delta Temperature = \frac{\Delta Heat}{Density\times \text {Specific Heat}\times \Delta \text {Flow Volume}}$$
来源:https://tex.stackexchange.com/questions/343701/how-do-i-add-spaces-when-im-doing
我遇到了一个奇怪的情况。温度方程无法在 Word 文档(Word 2016)中正确编织,而另一个方程则工作正常。我正在展示屏幕截图,并希望对这里的问题提出建议。我感谢任何帮助。 :-D
Word 输出中的方程式:
RStudio 中显示的等式:
等式显示在 HTML 输出中:
这里我使用了一个通用脚本来测试方程代码。
---
title: "test_equation"
date: "9/16/2020"
output: word_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
The equation doesn't show in the Word:
$$\Delta Temperature = \frac{\Delta Heat}{Density\times{Specific}\space{Heat}\times{\Delta Flow}\space{Volume}}$$
-------------------------------------------
The equation shows in the Word:
$$ME = \frac{1}{n}\sum(X_{sim} - X_{obs})$$
是 \space
导致了问题。 \text
在等式中添加空格时有效。
正确的方程代码:
$$\Delta Temperature = \frac{\Delta Heat}{Density\times \text {Specific Heat}\times \Delta \text {Flow Volume}}$$
来源:https://tex.stackexchange.com/questions/343701/how-do-i-add-spaces-when-im-doing