R markdonw ioslides标题页格式更改

时间:2015-06-17 18:51:51

标签: html css r rstudio r-markdown

我想改变我们编织html myoslides时出现的第一个标题页的外观。这是测试Rmd文件的标题:

    ---
    title: This test
    subtitle: that test
    author: jake
    output: 
       ioslides_presentation:
       incremental: true
       css: myCss4.css
    ---

我想要的是将标题居中(默认为左下角)并更改颜色和字体大小。我成功地改变了颜色和字体大小,但没有改变文本的位置......

这是我尝试的自定义css:

    slides > slide.title-slide hgroup h1 {
      font-weight: bold;
      font-size: 24pt;
      color:red;
      bottom: 50%;
    }

我尝试过底:50%;,top = 50%,其他一些事情没有成功......标题文字位置不会改变。我的代码是什么?或者有更好的方法而不是css?

1 个答案:

答案 0 :(得分:5)

尝试使用以下内容:

slides > slide.title-slide hgroup h1 {
  font-weight: bold;
  font-size: 24pt;
  color: red;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}