我希望我的gnuplot
图例设置为 LaTeX 数学模式,因为它们通常由公式描述。我使用wxMaxima
来生成图表,但gnuplot
如果这样更简单,我可以直接切换到使用。我也在使用pdflatex
,并希望坚持使用它。
答案1
关于 Andrew 希望获得简短教程的问题:这里就是。首先,我们设置一个名为 test.plt 的 gnuplot:
plot [-5:5] [-1.5:1.5] sin(x+pi) title "$\\sin(x+\\pi)$"
然后我们还建立了一个小的 Makefile:
.SUFFIXES: .plt .tex .pdf
%.tex: %.plt
gnuplot -e " set format '$$%g$$' ; set terminal epslatex standalone color ; set output '$@' " $<
%.pdf: %.tex
pdflatex $<
all: test.pdf
运行“make all”将产生以下图表:
注意:出于某种原因,反斜杠需要加倍。我猜它们在 gnuplot 中也有特殊含义。