Knitr 中的 Cairo 字体大小
Posted
技术标签:
【中文标题】Knitr 中的 Cairo 字体大小【英文标题】:Cairo font size in Knitr 【发布时间】:2013-05-28 15:40:06 【问题描述】:我正在尝试在 Cairo 设备中设置字体大小,但 pointsize
参数似乎设置了图中点的大小,而不是字体大小。我有这个 MWE:
\documentclassarticle
\begindocument
<<setup>>=
library(maptools)
data(meuse)
coordinates(meuse) <- c("x", "y")
proj4string(meuse) <- CRS("+init=epsg:28992")
@
<<fig1, dev='cairo_pdf', dev.args=list(family ="CMU Serif", pointsize=12), fig.keep='last'>>=
plot(meuse, pch=16)
legend("topleft", "Example Text")
@
<<fig2, dev='cairo_png',fig.ext='png',dev.args=list(family ="CMU Serif", pointsize=2), fig.keep='last'>>=
plot(meuse, pch=16)
legend("topleft", "Example Text")
@
\enddocument
fig1
有大点和普通文本,fig2
有相同的文本但小点。
【问题讨论】:
假设这个问题是关于 Knitr 而不是真正与 LaTeX 相关的,除了它在 LaTeX 文档中使用之外,你可能会在 *** 上得到更好的答案。 Yihui 最近fixed this issue,关注this SO question。 【参考方案1】:在 R 基础图形中,字体大小通常通过参数cex(.something)
设置。在这种特定情况下,您可以使用legend()
函数的cex
参数,例如
plot(meuse, pch=16)
legend("topleft", "Example Text", cex=2)
【讨论】:
以上是关于Knitr 中的 Cairo 字体大小的主要内容,如果未能解决你的问题,请参考以下文章