简体   繁体   English

noframenumbering:在 rmarkdown::beamer_presentation 中没有特定幻灯片的页码

[英]noframenumbering: no page number for specific slides in rmarkdown::beamer_presentation

In a LaTex beamer presentation generated with rmarkdown::beamer_presentation, how can I remove the slide numbers for specific slides?在使用 rmarkdown::beamer_presentation 生成的 LaTex 投影仪演示文稿中,如何删除特定幻灯片的幻灯片编号?

Since the slides contain plots and tables generated by R-markdown , plain LaTex approaches like the attempt below likely won't work.由于幻灯片包含由R-markdown生成的图表和表格,因此像下面的尝试这样的普通LaTex方法可能不起作用。

``` {=latex}
\begin{frame}[noframenumbering]{Frame name}

Frame without slide number but with Rmd-generated tables and plots.
- All other frames still have slide numbers.

\end{frame}
```

The noframenumbering option is not what you think it is. noframenumbering选项不是您想的那样。 It is to exclude the frame from being counted.就是不计入帧数。

To remove the footline with the page numbering, you can use the plain option:要删除带有页码的脚注,您可以使用plain选项:

---
output:
  bookdown::pdf_book:
    base_format: rmarkdown::beamer_presentation
    theme: "THEMENAME"
    slide_level: 2
    keep_tex: true 
---

## Slide 1 {.noframenumbering}

test

## Slide 2 {.plain}

test

## Slide 3

test

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 rmarkdown::beamer_presentation 中插入幻灯片的数量直到最后一张幻灯片 - Insert the number of slides up to a final slide in a rmarkdown::beamer_presentation 在 ToC 之后删除额外的空白幻灯片,并在 rmarkdown::beamer_presentation 中插入带有自定义投影仪主题的黑色幻灯片 - Remove additional blank slides after ToC and insert black slides in rmarkdown::beamer_presentation with custom beamer theme [rmarkdown]beamer_presentation中如何处理table - [rmarkdown]How to deal with table in beamer_presentation 如何调整 LaTex 投影仪主题以将其应用于 rmarkdown::beamer_presentation - How to adapt a LaTex beamer theme to apply it in an rmarkdown::beamer_presentation 如何自定义beamer_presentation RMarkdown布局? - How do I customise beamer_presentation RMarkdown layouts? 将多个帧选项传递给 rmarkdown::beamer_presentation 中的单个帧 - Passing multiple frame options to a single frame in an rmarkdown::beamer_presentation rmarkdown::beamer_presentation 中 kable 表中的 LaTex 代码 - LaTex code inside a kable table in an rmarkdown::beamer_presentation rmarkdown beamer介绍:如何不打印部分幻灯片? - rmarkdown beamer presentation: how to not print section slides? 使用自定义投影仪主题在 rmarkdown::beamer_presentation 中创建从徽标到目录幻灯片的超链接 - Create a hyperlink from the logo to the table of contents slide in an rmarkdown::beamer_presentation with a custom beamer theme R markdown,beamer_presentation 无法开始新页面 - R markdown, beamer_presentation can't start new page
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM