custom.css 使用 Xaringan 时消失
custom.css disappears when using Xaringan
我是这个神话般的 Xaringan 世界的新手,如果我的问题太简单,我深表歉意。我发现了这个关于更改 bullet point colors 的问题,我尝试复制它。
我创建了 custom.css
文件并将其存储在 remark-css 文件夹中,但是,每次我 运行 .rmd
、custom.css
文件消失了,我没有得到预期的结果,我做错了什么?
我能够复制如下。 R 的新手所以必须做一些设置。
- 安装 R 和 R 工具
- 安装 R Studio
- 安装 xaringan 软件包
在 R Studio 中 (testing.rmd)
- 文件 > 新建文件 > R Markdown > 从模板 > Ninja 演示文稿
- 删除所有幻灯片并创建我自己的幻灯片
testing.rmd
---
title: "Hello World"
subtitle: "testing"
author: "Hassan Voyeau"
institute: "TTR"
date: "19/9/2019 (updated: `r Sys.Date()`)"
output:
xaringan::moon_reader:
css: ["default", "custom.css"]
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
HELLO WORLD
* Item 1
* Item 2
custom.css(与 testing.rmd 在同一文件夹中)
ul {
list-style: none;
}
ul li::before {
content: "22";
color: red;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
结果
我是这个神话般的 Xaringan 世界的新手,如果我的问题太简单,我深表歉意。我发现了这个关于更改 bullet point colors 的问题,我尝试复制它。
我创建了 custom.css
文件并将其存储在 remark-css 文件夹中,但是,每次我 运行 .rmd
、custom.css
文件消失了,我没有得到预期的结果,我做错了什么?
我能够复制如下。 R 的新手所以必须做一些设置。
- 安装 R 和 R 工具
- 安装 R Studio
- 安装 xaringan 软件包
在 R Studio 中 (testing.rmd)
- 文件 > 新建文件 > R Markdown > 从模板 > Ninja 演示文稿
- 删除所有幻灯片并创建我自己的幻灯片
testing.rmd
---
title: "Hello World"
subtitle: "testing"
author: "Hassan Voyeau"
institute: "TTR"
date: "19/9/2019 (updated: `r Sys.Date()`)"
output:
xaringan::moon_reader:
css: ["default", "custom.css"]
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
HELLO WORLD
* Item 1
* Item 2
custom.css(与 testing.rmd 在同一文件夹中)
ul {
list-style: none;
}
ul li::before {
content: "22";
color: red;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
结果