gpt4 book ai didi

css - R knitr markown : Setting HTML page width

转载 作者:技术小花猫 更新时间:2023-10-29 11:03:15 24 4
gpt4 key购买 nike

我正在使用 knitr 创建一个 HTML 网页。默认设置似乎是 800px,但我需要更大的页面大小 1100px

body {
max-width: 800px;
margin: auto;
padding: 1em;
line-height: 20px ;
}

我试过:

library("markdown")
library("knitr")
knit2html("test.Rmd",options = c(width=1100))

但这仍然给我 800px 的较小页面大小

如何设置 HTML 页面宽度的代码?

最佳答案

css 元素添加到您的文档中,例如

---
title: "test"

output:
html_document:
css: "test.css"
---

然后将您的新 css 信息放入该文件中,例如

body {
max-width: 1100px;
margin: auto;
padding: 1em;
line-height: 20px ;
}

关于css - R knitr markown : Setting HTML page width,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28480625/

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