css – 如何将多个样式表附加到rmarkdown文档?

前端之家收集整理的这篇文章主要介绍了css – 如何将多个样式表附加到rmarkdown文档?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我正在创建.rmd报告,这是我的示例YAML,如何将另一个样式表附加到此报告的输出
---
title: "Example Report"
author: "Cool guy 62"
date: "`r format(Sys.time(),'%d %B,%Y')`"
output:
  html_document:
    theme: null
    css: 'style.css'
---

解决方法

将多个css文件放入括号内的数组中,如下所示:
---
title: "Example Report"
author: "Cool guy 62"
date: "`r format(Sys.time(),%Y')`"
output:
  html_document:
    theme: null
    css: ['browserreset.css','style.css','C:/Users/coolguy62/webpages/styles/bootstrap-modified.css']
---
原文链接:https://www.f2er.com/css/213980.html

猜你在找的CSS相关文章