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
和輸出,我得到的是下面
一個正如你所看到的標籤出來的畫布。我怎麼解決這個問題?