I'm trying to create a A4 page full with ID Badges from a CSVfile.
I've been using minipage+csvtools.
In the past 3 hours I've been trying to put a background image in the minipage, but it always appear only printed 1 time.
Code: Select all
\begin{document}
\applyCSVfile{./crachas.csv}
{
\begin{minipage}{8.9cm}
\noindent
\AddToShipoutPicture{\BackgroundPic{design/background-organizacao}}
\includegraphics{design/logo}\\
\addvspace{5mm}
\begin{center}
\huge{\insertNOME}
\scriptsize{
\begin{tabular*}{0.75\textwidth}{c}
\hline
\end{tabular*}}\\
\normalsize{\insertCURSO \insertINST}
\end{center}
\end{minipage}
}
\end{document}
Any help would be apreciated
Thank you