gpt4 book ai didi

css - xaringan:减少输入和输出之间的垂直空间?

转载 作者:行者123 更新时间:2023-11-28 09:42:23 26 4
gpt4 key购买 nike

如果我想减少代码输入框和输出框之间的垂直空间,我不知道如何更改 xaringan 包中的 CSS。这是默认 xaringan 模板中的简单更改:

---
title: "Presentation Ninja"
subtitle: "⚔<br/>with xaringan"
author: "Yihui Xie"
institute: "RStudio, Inc."
date: "2016/12/12 (updated: `r Sys.Date()`)"
output:
xaringan::moon_reader:
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---

background-image: url(https://upload.wikimedia.org/wikipedia/commons/b/be/Sharingan_triple.svg)

```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
```

???

Image credit: [Wikimedia Commons](https://commons.wikimedia.org/wiki/File:Sharingan_triple.svg)

---
class: center, middle

# xaringan

### /ʃaː.'riŋ.ɡan/

---
class: inverse, center, middle

# Get Started

---

---

# R code

```{r}
1+1

我想缩小输入和输出之间的空间:

enter image description here

这是我在 safari 类(class)浏览器中看到的内容。我想我只是想缩小橙色区域。 ?我尝试更改它,但弄乱了 CSS。感谢您的任何提示。

enter image description here

最佳答案

您可以通过插入 html 在文件中本地更改 css 代码 <style></style>标签。控制 pre 的默认大小的部分xaringan 的元素定义如下:

pre {
display: block;
font-family: monospace;
white-space: pre;
margin: 1em 0px;
margin-top: 1em;
margin-right: 0px;
margin-bottom: 1em;
margin-left: 0px;
}

(至少这是我使用 default markdown xaringan template from RStudio 时看到的默认代码)。

它是 margin-bottommargin-top您需要更改的元素。因此,如果您在 .Rmd 中的 yaml 之后添加以下内容文件然后你应该能够修改相关部分。

<style>
pre {
display: block;
font-family: monospace;
white-space: pre;
margin: 1em 0px;
margin-top: 0em;
margin-right: 0px;
margin-bottom: 0em;
margin-left: 0px;
}
</style>

关于css - xaringan:减少输入和输出之间的垂直空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57556452/

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