1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

gnuplot: ラベルがはみでる

Posted at

gnuplotでラベルのフォントサイズを大きくしたりすると、枠からはみ出ることがある。
それを改善しようというのが目的である。

結論

set <上下左右>margin <数字>を使う。
上:tmargin...top
下:bmargin...bottom
左:lmargin...left
右:rmargin...right

下側がはみ出た時は、例えばこんな感じ:

set bmargin 5

正の数で数字を大きくすると余白が大きくなる。この数字は文字サイズの数字なので、1なら一文字分くらいでイメージしやすい。
負の数も入力はできるが、正の数で微調整するのがいいと思われる。

また、

set bmargin at screen 5

のように、at screenを入れると文字サイズではなく、スクリーン領域の割合を表すらしいが文字サイズの方がイメージしやすそう(慣れたら違うのかも)。

これを使えば、pdfやeps、pngなどの出力画像中での位置をいじれる(そんなことをする必要があるのかはわからない)。
例えば左上に寄せたいなら、右側(rmargin)と下側(bmargin)を大きくしてやればいい。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?