Multiplotting with labels and arrows
In this recipe, we show how to create a complete illustration that might be useful in a calculus textbook, using arrows and the screen
coordinate system to lead the eye around a cycle of graphs. The following figure shows what happens when we take successive derivatives of a sine wave:
How to do it…
The following script will give you the previous figure:
set xrange [-pi:pi] unset key set multiplot layout 2,2 title "Derivatives of Sin(x)" font "Times-Roman, 22" set style arrow 1 head filled size screen 0.03,15,135 lt 2 lw 2 set arrow 1 from screen .45, .84 to screen .65, .84 arrowstyle 1 set arrow 2 from screen .87, .64 to screen .87, .3 arrowstyle 1 set arrow 3 from screen .7, .15 to screen .4, .15 arrowstyle 1 set arrow 4 from screen .35, .35 to screen .35, .7 arrowstyle 1 set title "sin(x)" plot sin(x) set title "sin\'(x) = cos(x)" plot cos(x) set title "sin\'\'\'(x) = cos\'\'(x) = -sin\'(x) = -cos(x)" plot -cos(x) set title "sin\'\'(x) = cos\'(x) = -sin...