使用 R markdown 生成的 beamer 演示文稿中的垂直对齐
Vertical alignment in beamer presentation generated with R markdown
当我使用 R Markdown 为 beamer 演示文稿创建幻灯片时,文本垂直居中,如果您只想在幻灯片中使用 1-2 行,这看起来真的很奇怪。无论如何要将文本与幻灯片顶部对齐(在幻灯片标题下方)?
寻找答案,我找到了这个 post 并尝试在 R Markdown 中使用它,但我尝试过的都没有用。
例如,您可以使用这些命令更改水平文本对齐方式和字体大小
\begin{flushright}
\begin{tiny}
bla..
\end{tiny}
\end{flushright}
是否有类似的垂直文本对齐方式?到目前为止我试过这个:
尝试 1:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
\documentclass[t]{beamer}
## Caption 1
test
尝试 2:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
## Caption 1
\begin{frame}[t]
test
\end{frame}
尝试 3:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
## Caption 1
\begin{flushleft}[t]
test
\end{flushleft}
包括 classoption: t
标题、作者等。例如:
title: "Title"
author: "Author"
date: "Date"
output: beamer_presentation
classoption: t
当我使用 R Markdown 为 beamer 演示文稿创建幻灯片时,文本垂直居中,如果您只想在幻灯片中使用 1-2 行,这看起来真的很奇怪。无论如何要将文本与幻灯片顶部对齐(在幻灯片标题下方)?
寻找答案,我找到了这个 post 并尝试在 R Markdown 中使用它,但我尝试过的都没有用。
例如,您可以使用这些命令更改水平文本对齐方式和字体大小
\begin{flushright}
\begin{tiny}
bla..
\end{tiny}
\end{flushright}
是否有类似的垂直文本对齐方式?到目前为止我试过这个:
尝试 1:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
\documentclass[t]{beamer}
## Caption 1
test
尝试 2:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
## Caption 1
\begin{frame}[t]
test
\end{frame}
尝试 3:
---
title: "Untitled"
author: "Author"
date: "25 Januar 2017"
output: beamer_presentation
---
## Caption 1
\begin{flushleft}[t]
test
\end{flushleft}
包括 classoption: t
标题、作者等。例如:
title: "Title"
author: "Author"
date: "Date"
output: beamer_presentation
classoption: t