1
我目前正試圖在Gnuplot中產生一個體面的多槽。可悲的是我遇到了一些問題。Gnuplot Multiplot個人情節大小+標籤
由於這兩個數字的y軸是相同的,我只想標註和抽取一次,但我不能刪除那些只從左邊的情節。
其次,我想增加左邊的繪圖的寬度,同時減少右邊的一個。
下面是我到目前爲止得到的圖片,代碼如下。
set term postscript eps enhanced color "Helvetica" 10
set output "dosband.eps"
set title "Bandstructure and Density of States"
#
set multiplot layout 1,2 \
margins 0.075,0.98,0.1,0.98 \
spacing 0.02,0.08 #margins: left,right,bottom,top; spacing: vertical, horizontal
set title "Bandstructure"
plot 'plotband.dat' using 1:2 with lines lt 1 lw 0.5 linecolor rgb "black" notitle
set xlabel "Density [states/eV]" #dont ask me why I have to swap the xlabels around
set ylabel "Energy [eV]"
#
set title "Density of States"
plot 'plotdos.dat' using 1:2 with lines lt 1 linecolor rgb "black" notitle
set xlabel "K-Points"
unset multiplot
預先感謝任何答案!
使用'set multiplot margin ... spacing ...'恰好是具有相同大小的圖。如果你不想這樣做,你必須用'set margin ...'或'set {tbrl} margin'單獨設置圖的大小。 – Christoph