仅更改 beamer_presentation r-markdown 中项目符号点的字体大小
Change font size of only bullet points in beamer_presentation r-markdown
我正在用 markdown 编写演示文稿
---
title: "TITLE"
subtitle: "SUB"
author: |
date: "30/10/2019"
theme: "Frankfurt"
latex_engine: xelatex
output: beamer_presentation
header-includes:
- \author{NAME}
- \institute[]{University}
---
我想创建一个字体比其他字体小的幻灯片
## First slide
* Normal text
* more normal text
## second slide
* small text
* small text
第二张幻灯片的文字应该较小。这可能吗?我在网上看到了很多答案,但是他们大多以某种方式提到了 HTML,或者在尝试 运行 他们
时我的电脑崩溃了
非常感谢
在您想要更小的文本之前使用文本大小命令:
## First slide
* Normal text
* more normal text
## second slide
\tiny
* small text
* small text
列出了更多文本大小命令here
我正在用 markdown 编写演示文稿
---
title: "TITLE"
subtitle: "SUB"
author: |
date: "30/10/2019"
theme: "Frankfurt"
latex_engine: xelatex
output: beamer_presentation
header-includes:
- \author{NAME}
- \institute[]{University}
---
我想创建一个字体比其他字体小的幻灯片
## First slide
* Normal text
* more normal text
## second slide
* small text
* small text
第二张幻灯片的文字应该较小。这可能吗?我在网上看到了很多答案,但是他们大多以某种方式提到了 HTML,或者在尝试 运行 他们
时我的电脑崩溃了非常感谢
在您想要更小的文本之前使用文本大小命令:
## First slide
* Normal text
* more normal text
## second slide
\tiny
* small text
* small text
列出了更多文本大小命令here