使用样式表更改字体大小以进行RStudio演示

时间:2015-01-29 06:00:45

标签: css r markdown rstudio presentation

我正在使用RStudio Presentation,我想更改主要元素的字体大小(例如:标题,项目符号和子项目符号)。我能够将样式表添加到我的rmd文件中,但我不知道在css文件中要更改什么。我已经尝试在css文件中的各个地方更改字体大小,但没有任何效果。

## Slide with Bullets

- Bullet 1
    + Sub bullet
- Bullet 2
- Bullet 3

1 个答案:

答案 0 :(得分:6)

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

给我这个

enter image description here

######等对应h1h2h3等。显然{{1}与幻灯片标题一起使用。如果要更改rstudio样式表,将h3放在每个项目的前面也很重要。