在 xaringan 中,我想在标题幻灯片中添加背景。我已经按照一辉的指示做到了。
这行得通,除了我失去了默认字体 (Yanone Kaffeesatz)。
YAML:
---
title: "My title"
subtitle: "My subtitle"
author: "Me Myself"
date: "01/01/2012"
output:
xaringan::moon_reader:
css: my-theme.css
lib_dir: libs
nature:
ratio: '16:9'
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
其中my-theme.css
如下:
.title-slide {
background-image: url(Figures/MyBackground.jpg);
background-size: cover;
}