你如何使用gnuplot的内置字体?

ral*_*ldi 5 gnuplot

gnuplot文档有关于字体的说法:

    Five basic fonts are supported directly by the gd library. These are
    `tiny` (5x8 pixels), `small` (6x12 pixels), `medium`, (7x13 Bold), 
    `large` (8x16) or `giant` (9x15 pixels).

但是,当我尝试使用一个:

    gnuplot> set terminal png font tiny

我明白了:

    Could not find/open font when opening font tiny, using default

我如何使用这些看似内置的字体?

ral*_*ldi 4

问题是,由于某种原因,对于这些字体,您不使用我上面尝试过的标准语法:

gnuplot> set terminal png font tiny
Run Code Online (Sandbox Code Playgroud)

但是,您可以为这五种特殊字体删除“字体”一词:

gnuplot> set terminal png tiny
Run Code Online (Sandbox Code Playgroud)