R Markdown中的乳胶序言

时间:2015-10-19 14:46:30

标签: r latex r-markdown

我已经阅读了几个讨论和线程,详细介绍了如何将乳胶预处理添加到R markdown,但我还没有找到如何将乳胶预处理添加到Rmd文件的简单解释。我有乳胶模板,我想在我的Rmd的PDF和Beamer输出中使用。

我在添加pre-amble参数方面遇到了很大困难。

我试过了:

in_header
<latex preamble>

以及

%%
<preamble>
%%

但似乎都没有效果。

任何有乳胶经验的人的解决方案,但使用rmd的解决方案要少得多吗?

2 个答案:

答案 0 :(得分:2)

你试过这个吗?

---
title: "My Title"
author: "All of Us"
date: "Today, November 2, 2015"
output: 
  pdf_document
fontsize: 12pt
header-includes: \usepackage{graphicx, verbatim, fancyvrb, setspace, xspace, colortbl, longtable, amsmath, caption, xfrac, float, mathabx}
---

您可以在&#34; header-includes&#34;部?

答案 1 :(得分:2)

我使用 in_header 参数指定序言文档的路径。

请注意,您可能会在序言文件中列出的某些内容可以直接指定,例如 geometry 包的选项:

---
title: "My Title"
author: "All of Us"
output:
  bookdown::pdf_document:
    includes:
      in_header: preamble.tex
geometry: "a4paper,right=6cm"
---