使用RStudio演示文稿的样式表更改字体大小
我使用的是RStudio演示文稿,我想更改主要元素(例如:标题、项目符号和子项目符号)的字体大小。我能够将样式表添加到我的RMD文件中,但是我不知道要在CSS文件中更改什么。我已尝试在CSS文件中的不同位置更改字体大小,但都不起作用。
## Slide with Bullets
- Bullet 1
+ Sub bullet
- Bullet 2
- Bullet 3
解决方案
RStudio演示文稿的默认样式表是here
您当然可以有样式表,但您也可以如下所示更改飞翔上的设置。
Untitled
========================================================
Slide title
========================================================
<style>
/* slide titles */
.reveal h3 {
font-size: 100px;
color: blue;
}
/* heading for slides with two hashes ## */
.reveal .slides section .slideContent h2 {
font-size: 40px;
font-weight: bold;
color: green;
}
/* ordered and unordered list styles */
.reveal ul,
.reveal ol {
font-size: 50px;
color: red;
list-style-type: square;
}
</style>
## Slide with Bullets
- Bullet 1
+ Sub bullet
- Bullet 2
- Bullet 3
给了我这个
#
、##
、###
等对应于h1
、h2
、h3
等。显然,h3
与幻灯片标题相对应。如果要更改RStudio样式表,将.reveal
放在每个项目前面也很重要。
相关文章