如何在 Rmarkdown 中中断项目的增量列表,然后在绘图或图形之后重新获取它? 您所在的位置:网站首页 onenote怎么退出绘图 如何在 Rmarkdown 中中断项目的增量列表,然后在绘图或图形之后重新获取它?

如何在 Rmarkdown 中中断项目的增量列表,然后在绘图或图形之后重新获取它?

2023-03-14 05:45| 来源: 网络整理| 查看: 265

本文介绍了如何在 Rmarkdown 中中断项目的增量列表,然后在绘图或图形之后重新获取它?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我真的很想用 RStudio 中断在 Rmarkdown 中创建的项目的增量列表,以显示图表和数字,然后重新突出显示列表.这在 Latex 中非常简单,但我无法弄清楚如何使用 Rmarkdown 实现相同的结果.下面是一些投影仪示例.

I'm really interested in interrupting incremental lists of items created in Rmarkdown with RStudio, to show plots and figures, then retake the list highlighting. This is quite straightforward in Latex, but I couldn't figure out how to achieve the same result using Rmarkdown. Below is some beamer example.

--- title: "Sample Document" author: "Author" output: beamer_presentation: fonttheme: structurebold highlight: pygments incremental: yes keep_tex: yes theme: AnnArbor toc: true slide_level: 3 --- # Some stuff 1 ### Some very important stuff - More detail on stuff 1 - More detail on stuff 1 - More detail on stuff 1 # The following chart should appear between the first and second item above ```{r, prompt=TRUE} summary(iris[, "Sepal.Length"]) # Stuff 2 ### There are other kinds of stuff? ```{r, prompt=TRUE} summary(mtcars[, "cyl"])

推荐答案

您可以在项目之间插入幻灯片,如下所示:

You can insert slides in between the items like this:

--- title: "Sample Document" author: "Author" output: beamer_presentation: fonttheme: structurebold highlight: pygments incremental: yes keep_tex: yes theme: AnnArbor toc: true slide_level: 3 --- # Some stuff 1 ``` {=latex} \end{frame} \begin{frame}[label=foo] \frametitle{some very important stuff} ``` - More detail on stuff 1 - More detail on stuff 1 - More detail on stuff 1 ``` {=latex} \end{frame} ``` ### Some chart insert chart here ``` {=latex} \end{frame} \againframe{foo} ``` ### other stuff

这篇关于如何在 Rmarkdown 中中断项目的增量列表,然后在绘图或图形之后重新获取它?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有