Knitr 和 tikzDevice 无法与文章选项一起使用

Knitr 和 tikzDevice 无法与文章选项一起使用

knitr我对和有意见tikzDevice,就像我之前有人一样。(见tikzDevice 尺寸不正确(knitr)。)他曾经dev.args消除过这个错误,但如果我通过knitr(使用rstudio)运行此代码,字体大小仍然会出错。dev.args=list(pointsize=12)对我不起作用。唯一有效的方法是删除a4paper,12pt。有人知道我做错了什么吗?

\documentclass[a4paper,12pt]{scrartcl}
\begin{document}

\begin{figure}
<<dev='tikz', dev.args=list(pointsize=12)>>=
x<-1
plot(x)
@
\end{figure}

\end{document}

答案1

一晖回答了这个问题:

这原来是tikzDevice软件包的一个错误,很久以前就报道过(但仍然没有修复)。问题是用于检测点大小的正则表达式是错误的(他们应该使用pt而不是[pt]):

> tikzDevice:::getDocumentPointsize
function (docString) 
{
    psLocation <- regexpr("\\d+[pt]", docString, ignore.case = T, 
        perl = T)
    if (psLocation == -1) {
        return(NA)
    }
    else {
        pointsize <- substr(docString, psLocation, psLocation + 
            attr(psLocation, "match.length") - 2)
        return(as.numeric(pointsize))
    }
}

有很多方法可以解决这个问题。tikzDevice当然,最好的方法是在 中修复它。在此之前,您可以使用这个简单的技巧:

\documentclass[12pt,a4paper]{scrartcl}

也就是说,切换12pta4paper以便可以检测到12而不是4

相关内容