如何在 gnuplot 的 xlabel 中添加乘号?

How to put a multiplication sign in the xlabel in gnuplot?

我想将 gnuplot 中的 xlabel 设置为:

   population ( "times" 1000 )

此处的 "times" 应替换为实际的乘号。我想要一个 png 输出。

有没有办法像在 latex 中一样使用 $\times$?

我假设您的终端理解 UTF-8。 因此,只需将其作为文本输入即可。 (参见 https://en.wikipedia.org/wiki/Multiplication_sign

population ( ⋅ 1000 )

population ( × 1000 )