gpt4 book ai didi

r - Knitr 中的 Cairo 字体大小

转载 作者:行者123 更新时间:2023-12-04 23:55:32 24 4
gpt4 key购买 nike

我试图在 Cairo 设备中设置字体大小,但 pointsize 参数似乎设置了图中点的大小,而不是字体大小。我有这个 MWE:

\documentclass{article}
\begin{document}
<<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")
@
\end{document}

fig1 有大点和普通文本,fig2 有相同的文本但点很小。 figure1 figure2

最佳答案

在 R 基础图形中,字体大小通常通过参数 cex(.something) 设置。在这种特定情况下,您可以使用 legend() 函数的 cex 参数,例如

plot(meuse, pch=16)
legend("topleft", "Example Text", cex=2)

关于r - Knitr 中的 Cairo 字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16880627/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com