Maurício a écrit :
Has anyone ever tried to use Context to create music CD labels? Any tips on what should I do, pages I can read or results I can expect?
Hi Mauricio, I have never tried to create CD labels but from my experience you should use overlay... Could you describe the geometry of the labels you use (if you use some) ? I can make an example without it but it can help to provide a full one... I need: - width and height of the page (if non-standard) - number of label per page and position of each label's center relatively to a corner of the page... A 2 min experiment gives: \setuppapersize[A4][A4] \setuppagenumbering[state=stop] \setupcolors[state=start] \startuseMPgraphic{CDShape} draw fullcircle scaled 12cm; draw fullcircle scaled 4cm; \stopuseMPgraphic \starttext \startproperty[hidden] I need some text to get the page... but also need to hide this text ! \stopproperty \definelayer[PageLayer][position=yes] \setupbackgrounds[page][background=PageLayer] \setuplayer[PageLayer][position=no,corner=bottom,height=\paperheight] % sample geometry \setlayer[PageLayer][x=.5\paperwidth,y=.25\paperheight,location=c]{\useMPgraphic{CDShape}} \setlayer[PageLayer][x=.5\paperwidth,y=.75\paperheight,location=c]{\useMPgraphic{CDShape}} \page \startproperty[hidden] I need some text to get the page... but also need to hide this text ! \stopproperty % another sample geometry \setlayer[PageLayer][x=.35\paperwidth,y=.30\paperheight,location=c]{\useMPgraphic{CDShape}} \setlayer[PageLayer][x=.65\paperwidth,y=.70\paperheight,location=c]{\useMPgraphic{CDShape}} \stoptext You can draw, clip, write whatever you want and where you want... The circular shape are just to demonstrate positionning and can help to check... You could use Metafun to do some advanced text manipulation (like shaped texts or followtoken texts...) No more to say... Renaud