> with(plots): setoptions(axesfont=[TIMES,ROMAN,24],labelfont=[TIMES,ROMAN,24],thickness=3,color=black); This is how to set "global" options that apply to every graph below.
Warning, the name changecoords has been redefined
> plot(5^x,x=-3..3,y=-1..10,labels=["",""]); The last option makes both x and y labels blank, so you don't get an x on the horizontal axis.
> plot(5^(x-3),x=-1..5,y=-1..10,labels=["",""]);
> p1:=plot(sin(x),x=0..2*Pi,labels=["x value","sine of x"]):
> p2:=PLOT(TEXT([3,1],"Look, mom!",ALIGNRIGHT,FONT(HELVETICA,OBLIQUE,24)),TEXT([3,0.6],"Nice text!",ALIGNRIGHT,FONT(HELVETICA,OBLIQUE,18))):
> display({p1,p2});