rMarkdown PDF不读取CSS

时间:2017-06-15 08:06:32

标签: r latex knitr r-markdown pandoc

我正在将rMarkdown文件编织成PDF格式。

我在RMD文件的顶部添加了css样式,但生成的PDF不会相应更改。

knitr PDF是否会读取CSS设置?

---
documentclass: article
geometry: margin=0.5cm
output:
  pdf_document: default
---
<style type="text/css">

h1.title {
  font-size: 20px;
  font-weight: bold;
  font-family: Arial-Black;
}

body {
  font-size: 12px;
  font-weight: bold;
  font-family: Calibri;
}

</style>

1 个答案:

答案 0 :(得分:1)

如果您正在编织成PDF,那么您将需要LaTeX和pandoc技能,而不是HTML和CSS技能。

This introduction使用Rmarkdown for PDFs的主题帮助我和this detailed reference guide。根据样式需求的复杂程度,您可能还想仔细阅读StackExchange上TeX community的答案。

我希望这会对你有所帮助。