以编程方式在R Console中设置字体和字体大小?

时间:2013-02-05 16:38:15

标签: windows r user-interface console

是否可以设置console font and font size,就像使用“编辑 - > GUI首选项”,以编程方式一样设置?这个功能怎么样?我在窗户上。

1 个答案:

答案 0 :(得分:7)

在Windows(至少)上,$R_HOME/etc/Rconsole配置文件为控制台和寻呼机设置了许多可选参数。以下是您可以手动编辑以更改默认字体和字体大小的部分:

## Font.
# Please use only fixed width font.
# If font=FixedFont the system fixed font is used; in this case
# points and style are ignored. If font begins with "TT ", only
# True Type fonts are searched for.
font = TT Courier New
points = 10
style = normal # Style can be normal, bold, italic

要更改活动R会话的命令行中的值,可以使用loadRconsole()功能。它读入包含上述表单指令的文本文件,该文件将覆盖启动R时从Rconsole读取的值。这是一个例子:

temp <- tempfile()
cat("points = 13\n", file = temp)
cat("style = italic\n", file = temp, append = TRUE)
loadRconsole(file = temp)

## And then, to reset to the defaults:
loadRconsole(file = file.path(R.home(), "etc/Rconsole"))