how do I put numbers on the corners of each card in an NANdeck? I've tried parsing the tutorial to no avail. Thank you very much.
Corner number in NANdeck
If you want to put the cards' number, use § symbol. For example, top-left corner, 100 cards:
FONT=ARIAL,16,T,#000000
TEXT=1-100,"{§}",0,0,10%,10%
If you want to put a sequence of numbers, use | separator. For example, numbers from one to zero:
FONT=ARIAL,16,T,#000000
TEXT=1-100,"1|2|3|4|5|6|7|8|9|0",0,0,10%,10%
For the other corners:
FONT=ARIAL,16,T,#000000
' top right
TEXT=1-100,"{§}",90%,0,10%,10%
' bottom left
TEXT=1-100,"{§}",90%,0,10%,10%
' bottom right
TEXT=1-100,"{§}",90%,90%,10%,10%
' bottom left - upside down
TEXT=1-100,"{§}",90%,0,10%,10%,center,center,180
' bottom right - upside down
TEXT=1-100,"{§}",90%,90%,10%,10%,center,center,180
If you have some other questions, ask freely.
OK, this is an example of numbering:
[seq]=1|1|1|1|1|1|1|1|1|1|2|2|2|2|2|2|2|2|2|3|3|3|3|3|3|3|3|4|4|4|4|4|4|4|5|5|5|5|5|5|6|6|6|6|6|7|7|7|7|8|8|8|9|9|10
[rng]="1-{(seq)}"
FONT=ARIAL,16,T,#000000
TEXT=[rng],[seq],0,0,10%,10%
TEXT=[rng],[seq],90%,0,10%,10%
TEXT=[rng],[seq],0,90%,10%,10%,center,center,180
TEXT=[rng],[seq],90%,90%,10%,10%,center,center,180
I have cards numbered from one to ten (ten ones, nine twos, eight threes, through to a single ten), and I want to put that number in each the corner so you can squeeze the cards together.
Thank you very much for the help; your program has helped me out a whole bunch in my prototyping.