6

是否可以像使用“编辑-> GUI 首选项”一样以编程方式设置控制台字体和字体大小?这个函数的外观如何?我在窗户上。

4

1 回答 1

10

在 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()函数。它读入一个包含上述形式指令的文本文件,这将覆盖RconsoleR 启动时读取的值。这是一个例子:

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"))
于 2013-02-05T17:27:17.150 回答