0

我下载了新版本的 knitr 包,但在尝试在 Rnw 文件中包含绘图时突然出现以下错误:

Error in options[[sprintf("fig.%s", i)]] * options$dpi : 
  non-numeric argument to binary operator
Calls: knit ... process_group.block -> call_block -> fix_options -> %n%

经过大量实验后,我发现问题出在命令 fig.height 上,显然它应该是数字。此代码产生错误:

\documentclass{article}

\begin{document}

<<cat, fig.cap="dog", fig.height='\\textheight'>>=
plot(c(1, 2, 3), c(2, 1, 3))
@

\end{document}

此代码不会:

\documentclass{article}

\begin{document}

<<cat, fig.cap="dog", fig.height=6>>=
plot(c(1, 2, 3), c(2, 1, 3))
@

\end{document}

不幸的是,我不知道这个 6 的测量单位是什么。

这段代码:

\documentclass{article}

\begin{document}

<<cat, fig.cap="dog", fig.height=6cm>>=
plot(c(1, 2, 3), c(2, 1, 3))
@

\end{document}    

产生不同的错误:

Error in base::parse(text = code, srcfile = NULL) : 
  1:44: unexpected symbol
1: alist( 'cat', fig.cap="dog", fig.height=6cm
                                           ^
Calls: knit ... withCallingHandlers -> eval -> parse_only -> <Anonymous>
Execution halted 

总而言之,似乎 knitr 真的期待 fig.height 的数值,这有点烦人,因为我已经fig.height='\\textheight'在整个文档中输入了很多命令(回到那些仍然有效的日子),我也没有真的知道Latex对应的数值\textheight是什么。

有什么建议吗?

更新:我做了一些更多的实验,结果发现你提供给 fig.height 的数字没有出现在 Latex 文件中,而是直接影响由 knitr 生成的 cat.pdf 图像的尺寸。这种暗示fig.height完全省略可能是最好的策略。但这并没有告诉我们如何[height=\textheight]在 tex 文档中获取 。

4

1 回答 1

4

使用块选项out.height而不是fig.height.

于 2015-06-16T16:37:48.260 回答