summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/ticket/doc/ex_marks.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/ticket/doc/ex_marks.tex')
-rw-r--r--macros/latex/contrib/ticket/doc/ex_marks.tex62
1 files changed, 62 insertions, 0 deletions
diff --git a/macros/latex/contrib/ticket/doc/ex_marks.tex b/macros/latex/contrib/ticket/doc/ex_marks.tex
new file mode 100644
index 0000000000..5bcd2f9d7b
--- /dev/null
+++ b/macros/latex/contrib/ticket/doc/ex_marks.tex
@@ -0,0 +1,62 @@
+%%%%
+%
+% ticket.sty example file for empty cross-marks
+%
+%%%%
+% use the corresponding paper size for your ticket definition
+\documentclass[a4paper,10pt]{letter}
+
+% load ticket.sty with the appropriate ticket definition
+\usepackage[freepin3,emptycrossmark]{ticket}
+
+% load misc stuff
+\usepackage{graphicx}
+\usepackage{color}
+%\usepackage{layout}
+
+% make your default ticket. \ticketdefault is somewhat like a background
+% here it is empty, because we use different tickets for the front an
+% the back of our card
+\renewcommand{\ticketdefault}{%
+}
+
+% now what do you like to put in your ticket
+\newcommand{\acard}[1]{\ticket{%
+ \put( 7, 20){\large Hello!}%
+ \put( 7, 10){Number:\bfseries #1}%
+}}
+
+% a counter, which makes life easier...
+\newcounter{numcards}
+
+\begin{document}
+%\layout\newpage
+\sffamily
+
+% cards with an empty crossmark
+\whiledo{\thenumcards<25}{\stepcounter{numcards}\acard{\thenumcards}}%
+
+% cards with cutmarks
+\setcounter{numcards}{0}\ticketreset\clearpage%
+\makeatletter\@emptycrossmarkfalse\@cutmarktrue\makeatother
+\whiledo{\thenumcards<25}{\stepcounter{numcards}\acard{\thenumcards}}%
+
+% cards boxed
+\setcounter{numcards}{0}\ticketreset\clearpage%
+\makeatletter\@cutmarkfalse\@boxedtrue\makeatother
+\whiledo{\thenumcards<25}{\stepcounter{numcards}\acard{\thenumcards}}%
+
+% cards with crossmarks
+\setcounter{numcards}{0}\ticketreset\clearpage%
+\makeatletter\@boxedfalse\@crossmarktrue\makeatother
+\whiledo{\thenumcards<25}{\stepcounter{numcards}\acard{\thenumcards}}%
+
+% cards with circlemarks
+\setcounter{numcards}{0}\ticketreset\clearpage%
+\makeatletter\@crossmarkfalse\@circlemarktrue\makeatother
+\whiledo{\thenumcards<25}{\stepcounter{numcards}\acard{\thenumcards}}%
+
+
+\end{document}
+
+