RStudio / RMarkdown:输出可以设置为“内联”和“在控制台中”吗?

jza*_*dra 5 rstudio r-markdown

有没有办法将 Rmd 输出设置为“内联块输出”和“控制台中的块输出”?

我喜欢将内容内联,但我也喜欢同时将绘图转到另一台监视器上的缩放绘图窗口。有什么设置可以同时允许两者吗?

IE:同时具有这两个设置:

output: 
  html_document:
    toc: true
    toc_float: true
    toc_depth: 3
editor_options: 
  chunk_output_type: inline
Run Code Online (Sandbox Code Playgroud)

output: 
  html_document:
    toc: true
    toc_float: true
    toc_depth: 3
editor_options: 
  chunk_output_type: console
Run Code Online (Sandbox Code Playgroud)