program anatomy101b
    version 8.2

    use anatomy, replace

    twoway connected y1 x || line y2 x,				///
         text(1.7 3.2 "plot1 -- mcolor() msize() clcolor() ...",  ///
	      just(center) color(navy))			///
         text(4.6 2.9 "plot2 -- clwidth() clpattern() ...",  ///
              just(center) color(maroon))		///
         text(5.7 2.5 "plotregion()" ,			///
              just(center) size(5))			///
         ylabel(1(1)6 ,  axis(1 2) gmax)		///
         ytitle("ytitle()")				///
         xtitle("xtitle()")				///
         title("title()")				///
	 subtitle("subtitle()")				///
         note("note()")					///
	 caption("caption()")				///
	 xlabels(1 2.5 "ylabels(##, labcolor() ...)"  4) ///
         legend(order(1 "size()" 2 "color()")		///
    		title("legend(title() note() ...)",	///
		size(medlarge)))			///
         `0'
end
