如何在 gnuplot 中使标签和标题加粗?

How to make labels and title bold in gnuplot?

我想把情节的标签和标题加粗。我知道如何更改大小,即

set title font ',30'

我在这里看到了一个问题,该在哪个州执行此操作:

set ytics format "{/:Bold {/=14 %h}}"

但它只适用于抽动症。如何为标签和标题做这件事?

您使用的是哪个 gnuplot 版本和哪个终端?以下内容应该在 gnuplot >=5.0.0 和 wxt 终端上工作。

代码:

### bold labels and title
reset
set term wxt enhanced

set title  "{/:Bold My Title in bold}"
set xlabel "{/:Bold my xlabel in bold}"
set ylabel "{/:Bold my ylabel in bold}"

plot x
### end of code

结果: