Created
December 27, 2013 13:57
-
-
Save thetzel/8147211 to your computer and use it in GitHub Desktop.
Serialized Coupons in LaTeX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[10pt,parskip=full,a4paper]{article} | |
\pagestyle{empty} | |
\usepackage[top=2.5cm,left=1cm,right=1cm]{geometry} | |
\usepackage{csvtools} | |
\usepackage{lmodern} | |
\renewcommand*\familydefault{\sfdefault} | |
\usepackage[T1]{fontenc} | |
\setlength{\parindent}{0cm} | |
\begin{document} | |
\setlength{\parskip}{1.5cm} | |
\applyCSVfile{coupons.csv}{ | |
\begin{center} | |
\Large \textbf{Your Coupon} | |
\Large Code: \texttt{\insertCoupon} | |
Redeem at example.com/redeem\\ | |
\end{center} | |
\pagebreak | |
} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment