gpt4 book ai didi

css - 在 R Markdown 演示文稿中覆盖 reveal.js

转载 作者:行者123 更新时间:2023-11-28 08:35:39 24 4
gpt4 key购买 nike

我正在尝试在 rmarkdown 中整合一个 reveal-js 演示文稿,但无法覆盖默认的 css 主题。我想从我的绘图图像中删除边框。根据文档,这应该有效:

Custom-css

但它没有,我猜这是因为这个覆盖不是更具体。但我的问题是我通常提高特异性的方法也不起作用:

## Slide with Plot
<section class = "no-border">
```{r pressure}
plot(pressure)
```
</section>

这是 YAML header :

title: "Title"
author: "..."
date: '`r paste(format(Sys.Date(),"%d")," ", mymonths[sys.man], ", ",
format(Sys.Date(),"%Y"), sep = "")`'
output:
revealjs::revealjs_presentation:
incremental: true
includes:
in_header: slidy_bootstrap_header.html
css: slidyStandard.css

这是 css 覆盖:

section.no-border > img {
background:none;
border:none;
box-shadow:none;
}

有人知道我做错了什么吗?

最佳答案

我意识到我将自定义 css 放在了我的 YAML header 中的错误位置。因此,它没有用。

下面是使用自定义 CSS 的可重现代码:

---
title: "Untitled"
output:
revealjs::revealjs_presentation:
css: custom2.css
---

## R Markdown

This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.

## Slide with Bullets

- Bullet 1
- Bullet 2
- Bullet 3

## Slide with R Code and Output

```{r}
summary(cars)
```

## Slide with Plot

```{r, echo=FALSE}
plot(cars)
```

还有CSS:

.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: none;
box-shadow: none;
}

关于css - 在 R Markdown 演示文稿中覆盖 reveal.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40376354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com