How can we plot in maxima with different line styles (for example dash, dash-dot, etc. and not just change the color of the lines). Minimal working example:
f(x) := sin(x) $
g(x) := cos(x) $
plot2d( [f(x), g(x)], [x,0,10],
[style, [lines, 1,4], [lines, 1,3]] )$
The above can probably be done with the style
option of plot2d
. However, I cannot find the right option.