我从Gnuplot coloring 3D-vectors知道应该如何为箭头着色。但是,在Windows Gnuplot 4.6 Patchlevel 5下,以下MWE不会生成红色箭头,只会生成黑色箭头。
reset
set terminal epslatex size 15cm,9.27cm color colortext 8 dashed
set style arrow 1 linecolor rgb "red"
file = 'OutputSetting0'
set output 'Setting0/test.tex'
set xrange [-1:1]
set yrange [-1:1]
set zrange [-1:1]
set arrow 1 from -1,0,0 to 1,0,0 arrowstyle 1
splot file u (0):(0):(0):2:3:4 with vectors arrowstyle 1
reset
exit
手动添加的额外箭头(set arrow ...
)为红色。但是,从文件读取位置数据的那个仍然是黑色的。
还有另一种方法可以从文件中获得彩色箭头(除了更改不可用的终端之外)吗?
根据要求,这里也是LaTeX代码的MWE:
\documentclass{scrreprt}
\usepackage{color}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\begin{figure}[H]
\input{Setting0/test}
\end{figure}
\end{document}
答案 0 :(得分:0)
好吧,这似乎是一个错误?
添加set hidden3d
会使我的箭头变红。我保证我没有触及我剧本的任何其他部分。