在 R Markdown 中制作“谢谢”幻灯片

Making "Thank You" slide in R Markdown

提问人:Aleksandra 提问时间:6/3/2020 更新时间:6/3/2020 访问量:1258

问:

如何制作中间带有“谢谢”的幻灯片,我试过了:

\begin{frame}
\begin{center}
Thank You
\end {center}
\end{frame}

但它没有用,出现了错误。

同样当我尝试这样的事情时:

## Title
\begin{center}
Thank You
\end {center}

我不知道如何删除标题。

R-Markdown 投影仪

评论

0赞 samcarter_is_at_topanswers.xyz 6/3/2020
请做一个最小的可重复的例子

答:

0赞 Aleksandra 6/3/2020 #1

最小重现示例:

---
title: "Title"
author: "Name"
output:
  beamer_presentation:
    theme: "Singapore"
    colortheme: "seagull"
    fonttheme: "serif"

fontsize: 16pt
---


## Slide 1
text

## Slide 2
# hear I want to have a sign "Thank You" on the middle of the page, what I've tried is in my question:

\begin{frame}
\begin{center}
Thank You
\end {center}
\end{frame}
2赞 user13653858 6/3/2020 #2

如果您只想在没有幻灯片标题的情况下居中,您可以简单地用 创建一个空标题,请参见下文:##

---
title: "Title"
author: "Name"
output:
  beamer_presentation:
    theme: "Singapore"
    colortheme: "seagull"
    fonttheme: "serif"

fontsize: 16pt
---


## Slide 1
text

## Slide 2

##
\begin{center}
Thank You
\end {center}

希望这有帮助!