30 Oct
2004
30 Oct
'04
7:25 p.m.
All, I have: \page \subject{Plotting} With preliminaries completed, plotting is a simple matter. \starttyping
x=linspace(-2,4); y=x.^2-2*x-3; plot(x,y) xlabel('x') ylabel('y') title('y = x^2 -2x -3') grid on \stoptyping
\placefigure[none]{}{\externalfigure[slide1.png]} I'd like to arrange this on my slide side-by-side, the code to the left, the image to the right. If I we're doing this in Latex, I would probably use minipage environments for this. Can someone hint at the Context Way of doing this? I'd like my code vertically centered on the left, the image on the right. Thanks.