如何修复gnuplot中的Xtics标签重叠

时间:2019-04-17 03:52:04

标签: graph gnuplot

我正在使用GNUPlot绘制五个实值函数的图形。我认为这很容易解决,但是我是一个初学者。 我的x轴标签有问题。所有的Xtics数字都是重叠的,我不知道为什么。 我的.plt绘制了3个文件:.eps,pb .eps和.png。它收到一个.100文件,它是6列数字。第一列代表t的值,其他五列代表每个函数在相应t的值。

我的.plt文件是:

reset
set terminal windows

set style line 1 lt 1 linewidth   3
set style line 2 lt 2 linewidth   3 
set style line 3 lt 3 linewidth   3 
set style line 4 lt 4 linewidth   3 
set style line 5 lt 5 linewidth   3
set style line 6 lt 6 linewidth   3


set border linewidth 3

set xzeroaxis
set yzeroaxis

set xlabel '{/Helvetica-Oblique t (dias)}' enhanced font ',28'

set key center top
set key center right
set key top right
set key box

set tics scale 1.5

set grid ytics
set grid xtics

set xtics 0,250,3500

set ytics 0,0.1,1


set title 'Simulacao' font ',26'

set samples 100

plot "./fort.100"  using 1:2 with lines title 'Ms' linestyle 1, \
     "./fort.100"  using 1:3 with lines title 'Mi' linestyle 2, \
     "./fort.100"  using 1:4 with lines title 'A ' linestyle 3, \
     "./fort.100"  using 1:5 with lines title 'H ' linestyle 4, \
     "./fort.100"  using 1:6 with lines title 'I ' linestyle 5

pause -1

set terminal postscript eps enhanced
set termoption enhanced
set output "xsol-pb.eps"

replot

set terminal postscript eps enhanced color font ',22'
set termoption enhanced
set output "xsol.eps"

replot

set terminal png giant size 900,600 enhanced 
set termoption enhanced
set output "xsol.png"

replot

我的.eps图的链接:

enter image description here

如何解决此问题?

在图像的右上角,桌子也有问题。该如何解决?

1 个答案:

答案 0 :(得分:1)

两种避免数据和密钥“冲突”的可能性:

  1. 调整比例,以使曲线位于关键点下方,例如您set yrange[0:1.5]
  2. 移动密钥的位置,例如set key center rightset key at graph 0.8, graph 0.8。检查help key了解更多信息。