【发布时间】:2018-06-09 23:10:57
【问题描述】:
我正在尝试在 gnuplot 中创建一个图,在图例中的符号 theta 上带有点。
我正在寻找类似于乳胶的 \dot{\theta} 和 \ddot{\theta} 的东西。但是,大多数帖子要求使用输出 .tex 文件的“set term latex”或“set term epslatex”。我需要将输出保留为 pdf,在图例中的 theta 上带有点和双点。这可能吗?感谢任何帮助。谢谢!
代替“音高率”,我需要符号 theta,上面有一个点。 代替“音高加速”,我需要符号 theta,上面有两个点。
set term pdf
set termopt enhanced
set encoding utf8
set output "rampfuncs.pdf"
set style func linespoints
set xlabel 'time'
set format y "%.2f"
plot "output.dat" using 1:2 title '{/Symbol q} - Pitch angle', \
"output.dat" using 1:3 title 'Pitch rate', \
"output.dat" using 1:4 title 'Pitch acceleration'
set term x11
meuh 回答后更新:图片供参考
来自 meuh 的 cmets 之后的第二次更新:图 2
【问题讨论】:
标签: latex gnuplot legend symbols