作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道使用 fig.scap 应该提供一个用于图表的短标签,但它没有,它使用长标签。有任何想法吗? Rstudio 版本 0.98.1091。
---
output:
pdf_document:
fig_caption: yes
---
\listoffigures
```{r, fig.cap="long caption",fig.scap="short"}
plot(1:4)
```
最佳答案
此选项最初仅用于 .Rnw 文档。它不适用于 .Rmd 文件。但是,您可以通过指定任何块选项 out.width
在 R Markdown 中触发绘图的 LaTeX 输出。 , out.height
, 和 fig.align
.例如,
---
graphics: yes
output:
pdf_document:
fig_caption: yes
---
\listoffigures
```{r, fig.cap="long caption", fig.scap="short", fig.align='center'}
plot(1:4)
```
graphics: yes
确保 Pandoc 知道文档中的图形输出(在这里解释太技术性了)。
fig.align = 'center'
);使用
fig.scap
将生成正确的 LaTeX 输出。既然有人又问了同样的问题,
I just decided to fix the issue on Github ,你将需要
remotes::install_github('yihui/knitr')
关于r - 短标题 knitr 中的 fig.scap 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27250635/
我知道使用 fig.scap 应该提供一个用于图表的短标签,但它没有,它使用长标签。有任何想法吗? Rstudio 版本 0.98.1091。 --- output: pdf_document:
我问并回答了我自己的问题,所以我会把它贴在这里以防万一 如果您想要 Rmarkdown 或 Bookdown 中的数字表格,并且您想使用 Markdown 格式,则不能将其放在 Rmarkdown 块
我是一名优秀的程序员,十分优秀!