How do I center my YAML heading in an R markdown html document?(如何在 R markdown html 文档中将 YAML 标题居中?)
本文介绍了如何在 R markdown html 文档中将 YAML 标题居中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想让我的 YAML 标头信息以我的 html 文档为中心.
I want to have my YAML header information centered on my html document.
我希望其他一切正常.
我可以将任何 html 或其他代码应用于 YAML 标头以实现此目的吗?
Can I apply any html or other code to the YAML header to make this happen?
我该怎么做??
例子:
我有:
---
title: "Shiny HTML Doc"
author: "theforestecologist"
date: "Apr 14, 2017"
output: html_document
runtime: shiny
---
推荐答案
这里有一些 css 样式,您可以使用它们来完成您所需要的.
Here is some css styling that you can use to accomplish what you need.
- markdown 文档标题使用
h1.title
CSS 选择器 - markdown 文档作者字段使用
h4.author
CSS 选择器 - markdown 文档 datea 字段使用
h4.date
CSS 选择器
- The markdown document title uses the
h1.title
CSS selector - The markdown document author field uses the
h4.author
CSS selector - The markdown document datea field uses the
h4.date
CSS selector
代码如下:
---
title: "Shiny HTML Doc"
author: "theforestecologist"
date: "Apr 14, 2017"
output: html_document
runtime: shiny
---
<style type="text/css">
h1.title {
font-size: 38px;
color: DarkRed;
text-align: center;
}
h4.author { /* Header 4 - and the author and data headers use this too */
font-size: 18px;
font-family: "Times New Roman", Times, serif;
color: DarkRed;
text-align: center;
}
h4.date { /* Header 4 - and the author and data headers use this too */
font-size: 18px;
font-family: "Times New Roman", Times, serif;
color: DarkBlue;
text-align: center;
}
</style>
# H1 Header
Some body text
## H2 Header
More body text
```{r echo=T}
n <- 100
df <- data.frame(x=rnorm(n),y=rnorm(n))
```
这就是它最终的样子:
这篇关于如何在 R markdown html 文档中将 YAML 标题居中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在 R markdown html 文档中将 YAML 标题居中?


猜你喜欢
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 400或500级别的HTTP响应 2022-01-01