On Fri, 12 Jan 2024 23:05:14 +0900
Jeong Dal via ntg-context
I’d like to make a ticket on A4 as follows:
1. Use all of A4(no margin, no header, no footer,…) 2. Arange 12 tickets in the form of 3 x 4 on one page, 3. Two rows are same, 4. Numbers in the center of the ticket which is increasing.
I use the following code to make it.
Here's a suggestion: \definepapersize [jeong] [width=67mm, height=73mm] \setuppapersize [jeong] [A4] \setuppaper [nx=3, ny=4, dx=4.4mm, dy=1.5mm] \setuparranging [XY] \setuplayout [page] \setuppagenumbering [state=stop] \setupmakeup [standard] [align=middle] \setupblank [2*line] \showframe \starttext \dorecurse{12}{%% \startstandardmakeup Text \blank {\tfd\recurselevel} \blank Text \stopstandardmakeup \page} \stoptext That's how I'd approach it. Not sure if it meets all your requirements, though. Marco