knitr不接受dev的opts_chunk set选项

时间:2014-09-03 01:32:27

标签: r knitr cairo

使用knit('%。Rnw')

时,以下最小示例无法编译
\documentclass[]{article}

%opening
\title{STAT 520 Homework No. 1}
\author{Cheng Jia}

<<setup, include=FALSE, cache=FALSE>>=
library(knitr)
opts_chunk$set(dev='cairo_pdf', dev.args=list(family='Lekton'))
options(show.signif.stars=F)
@

\begin{document}

\maketitle
<<test,cache=TRUE,eval=TRUE,echo=FALSE>>=
a<-1
@
This is testing a=\Sexpr{a}.
\end{document}

错误消息显示为:

Quitting from lines 18-19 (try.Rnw) 
Error in pdf(NULL, width, height, ...) : unknown family 'Lekton'
Calls: knit ... chunk_device -> dev_new -> do.call -> <Anonymous> -> pdf

因此看来knitr不再接受设备选项,因此它不使用cairo_pdf设备,而是使用默认的pdf设备。

知道发生了什么事吗?

System:
Mac Os 10.9.4
R version: R version 3.1.1 (2014-07-10)
Knitr version: 1.6

The problem is solved by using the following setup:
System: Windows 7 SP1
R version: 3.1.0
Knitr version: 1.5

当我更新到最新的Knitr和R时,似乎引入了一些不兼容性。

1 个答案:

答案 0 :(得分:2)

此问题是一个已知问题,fixed中已development version of knitr,在未来几周内将在CRAN上为v1.7(如果需要,可以从Github安装)。< / p>