First, compile the following code (using latex --> dvips --> ps2pdf) in the file single.tex:
\documentclass[11pt,a4paper]{memoir}
\usepackage{pst-barcode}
\setstocksize{55mm}{85mm} % UK Stock size
\setpagecc{55mm}{85mm}{*}
\settypeblocksize{45mm}{75mm}{*}
\setulmargins{5mm}{*}{*}
\setlrmargins{5mm}{*}{*}
\setheadfoot{0.1pt}{0.1pt}
\setheaderspaces{1pt}{*}{*}
\checkandfixthelayout[fixed]
\pagestyle{empty}
% Code for the card.
\newcommand*\BusinessCard{%
%\pagecolor[cmyk]{.22,.36,.51,.08}%
\begin{Spacing}{0.75}%
\noindent
\textbf{Alexander~Slesarev}\\
\rule{74mm}{1mm}\\
\begin{minipage}[t]{30mm}
\vspace{-1.5mm}%
\begin{pspicture}(30mm,30mm)
% The MECARD format is used to exchange contact information. More information at:
% http://www.nttdocomo.co.jp/english/service/imode/make/content/barcode/function/application/addressbook/index.html
\psbarcode{MECARD:N:Slesarev,Alexander;TEL:+16047165085;EMAIL:alex.slesarev@gmail.com;URL:http://nuald.blogspot.com;;}{eclevel=L width=1.15 height=1.15}{qrcode}
\end{pspicture}
\end{minipage}
\hspace{1mm}
\begin{minipage}[t]{42mm}
\vspace{-1mm}%
\begin{flushleft}
{\scriptsize
\begin{Spacing}{1}%
\textbf{IT Specialist}\\
\hspace{5mm}Software Development\\
\hspace{5mm}Security Researcher\\
\hspace{5mm}High Load Systems\vspace{9mm}\\
\end{Spacing}
}
{\tiny
\textbf{email:} alex.slesarev@gmail.com\\
\textbf{phone:} 604-716-5085\\
\textbf{web:} http://nuald.blogspot.com/\\
\vspace*{2mm}
}
\end{flushleft}
\end{minipage}
\rule{74mm}{1mm}
\end{Spacing}
}
\begin{document}
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\end{document}
Next, compile the following code (using pdflatex):
\documentclass{article}
\usepackage{pdfpages}
\newcommand*\TheCards{\includepdf[nup=2x5,pages=-]{single}}
\begin{document}
\TheCards
\TheCards
\TheCards
\end{document}
Is this what you are looking for?
An improvement (in my opinion) to the card is if you use the url package:
\documentclass[11pt,a4paper]{memoir}
\usepackage{pst-barcode}
\usepackage{url}
\setstocksize{55mm}{85mm} % UK Stock size
\setpagecc{55mm}{85mm}{*}
\settypeblocksize{45mm}{75mm}{*}
\setulmargins{5mm}{*}{*}
\setlrmargins{5mm}{*}{*}
\setheadfoot{0.1pt}{0.1pt}
\setheaderspaces{1pt}{*}{*}
\checkandfixthelayout[fixed]
\pagestyle{empty}
% Code for the card.
\newcommand*\BusinessCard{%
%\pagecolor[cmyk]{.22,.36,.51,.08}%
\begin{Spacing}{0.75}%
\noindent
\textbf{Alexander~Slesarev}\\
\rule{74mm}{1mm}\\
\begin{minipage}[t]{30mm}
\vspace{-1.5mm}%
\begin{pspicture}(30mm,30mm)
% The MECARD format is used to exchange contact information. More information at:
% http://www.nttdocomo.co.jp/english/service/imode/make/content/barcode/function/application/addressbook/index.html
\psbarcode{MECARD:N:Slesarev,Alexander;TEL:+16047165085;EMAIL:alex.slesarev@gmail.com;URL:http://nuald.blogspot.com;;}{eclevel=L width=1.15 height=1.15}{qrcode}
\end{pspicture}
\end{minipage}
\hspace{1mm}
\begin{minipage}[t]{42mm}
\vspace{-1mm}%
\begin{flushleft}
{\scriptsize
\begin{Spacing}{1}%
\textbf{IT Specialist}\\
\hspace{5mm}Software Development\\
\hspace{5mm}Security Researcher\\
\hspace{5mm}High Load Systems\vspace{9mm}\\
\end{Spacing}
}
{\tiny
\textbf{email:} \url{alex.slesarev@gmail.com}\\
\textbf{phone:} 604-716-5085\\
\textbf{web:} \url{http://nuald.blogspot.com/}\\
\vspace*{2mm}
}
\end{flushleft}
\end{minipage}
\rule{74mm}{1mm}
\end{Spacing}
}
\begin{document}
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\BusinessCard
\end{document}
(Compare the email address and website.)
P.S. I have adjusted the \vspace at the beginning of the {minipage} enviroment in order the vertivally center it relativt to the text.
P.P.S. The drawing of the card is not done using good LaTeX code, but it works. :)
pdfpagespackage? – Svend Tveskæg Jul 30 '13 at 10:11