我正在尝试将脚本编写为PDF文档的Rmd文件并遇到一些错误。
我必须说,如果我点击Rstudio中的编织按钮,文档编织就好了,但如果我使用该命令就无法编织:
rmarkdown::render('diagnostic.Rmd',output_format = "pdf_document",
output_file = "diag.pdf")
我得到的第一个错误来自我的代码部分:
---
author: Zigo_datateam
date: "`r format(Sys.time(), '%d %B, %Y')`"
geometry: margin=1.6in
header-includes: "\\usepackage{fancyhdr} \\fancyfoot[CO,CE]{My footer}"
output:
pdf_document:
toc: false
title: "Graphic Layout(Report)"
---
并且是:
Error in yaml::yaml.load(string, ...) :
Scanner error: while scanning a simple key at line 4, column 1could
not find expected ':' at line 5, column 1
所以,如果我删除了洞header-includes
表达式,它似乎开始编织,但后来我从这部分得到第二个错误(在第二个“---”之后):
\addtolength{\headheight}{1.0cm}
\pagestyle{fancyplain}
\rhead{\includegraphics[height=1.2cm]{logo.png}}
\renewcommand{\headrulewidth}{0pt}
ERROR:
! Undefined control sequence.
<argument> \undefinedpagestyle
l.130 ...headheight}{1.0cm} \pagestyle{fancyplain}
如何在不获取第二个错误的情况下摆脱第一个错误?
更新:我决定将所有页脚/标题样式移到单独的文件中,我的代码如下所示:
---
author: Zigo_datateam
date: "`r format(Sys.time(), '%d %B, %Y')`"
geometry: margin=1.6in
output:
pdf_document:
includes:
in_header: mystyles.sty
title: "Graphic Layout(Report)"
---
我之前谈到的错误显示但我仍然明白:
pandoc: Error producing PDF
Error: pandoc document conversion failed with error 43
答案 0 :(得分:1)
在您的YAML中,使用
header-includes:
- \usepackage{fancyhdr}
- \fancyfoot[CO,CE]{My footer}
它应该有用。