2017-01-13 113 views
1

的,我在繪製的gnuplot的epslatex終端的數據集。該代碼是一個低於Epslatex終端gnuplot的標籤了屏幕

set terminal epslatex color colortext standalone font 10 header \ 
'\usepackage{amssymb, amsmath, mathtools, breqn, amsthm, mathrsfs}' 
set out 'fit.tex' 



set key top right box height 0.3 
unset border 
set style line 123 dt 2 lc 'gray' 
set grid linestyle 123 


##----->LABELS## 
set title '$\ln{\left(\dfrac{P}{P_0}\right)}$ vs $\dfrac{1}{T}$' 
set xlabel '$\dfrac{1}{T}$ (K$^{-1}$)' 
set ylabel '$\ln{\left(\dfrac{P}{P_0}\right)}$' 


##----->FIT## 
f(x) = m * x + q 
fit f(x) 'asc.txt' u 1:2:3:4 xyerrors via m, q 

##----->PLOT## 
p 'asc.txt' u 1:2:3:4 w xyerrorbars t 'data', f(x) t 'Fit' 
set out 

和輸出,我得到的是下面

plot

一個正如你所看到的標籤出來的畫布。我怎麼解決這個問題?

回答

1

有時gnuplot的失敗來估計文本元素的寬度或高度。您可以手動增加左側和底部標籤的空間:

set lmargin at screen 0.17 
set bmargin at screen 0.17 

玩數字。

爲了完整起見,還rmargintmargin可以根據需要進行調整。