我正在尝试使用latex命令rmarkdown
将部分幻灯片添加到\section{}
中编写的beamer演示文稿中。但是,它会插入到\begin{frame}
和\end{frame}
之间。转换期间会自动tex
,这会导致编译失败。有没有办法阻止这种情况发生,以便可以添加部分幻灯片而无需手动编辑rmarkdown
文件?
这是我的---
title: "Beamer presentation"
output: beamer_presentation
---
\section{Section one}
代码:
\title{Beamer presentation}
\begin{document}
\frame{\titlepage}
\begin{frame}
\section{Section one}
\end{frame}
\end{document}
转换为:
parser.add_argument("-d", "--data", default=b'\0')
答案 0 :(得分:5)
幻灯片和部分幻灯片均由降价标题定义,在行的开始处有一系列#
字符,#
的数字表示标题的层次级别。
默认情况下[定义帧的级别]是最高的标题级别 层次结构紧跟内容,而不是另一个 标题,文档中的某个地方。
所有比这一级更高级别的标题将成为章节标题。
来自rmarkdown documentation;另请参阅pandoc documentation on slideshows。
例如:
# Section title
## Frame title
Frame content
### Subtitle inside a frame