[Tex/LaTex] pocket-sized address book

croppaper-sizetables

Do you know of any latex example or a package that I could use to print a pocket sized paper? All records will have a format like this:

| name | phone | e-mail |

It would contain only 15 records for now so I think an A6 or A7 would be a good paper size.

UPDATE: It would be nice to have cropping marks to help me cutting the A6 or A7 paper shape. I would like to fill an A4 paper with those pocket-sized phone books and then cut them for my 15 friends in the list.

Best Answer

Cant u just make a file like this on a6 paper:

\begin{tabbing}
namename \= phonephone \= email \kill
John Doe \> 555-555 \> johndoe@hotmail.com \\
\end{tabbing}

Or with a simple table?

\begin{tabular}{p{1.5cm}p{1.5cm}p{1.5cm} }
John Doe & 555-555 & johndoe@hotmail.com \\
\end{tabular}
\end{document}

My testfile:

\documentclass{article}
\usepackage{wasysym} 
\usepackage{marvosym}
\usepackage[dutch]{babel}
\usepackage{geometry}
\geometry{
paperwidth=4.13in,
paperheight=5.83in,
margin=2em,
bottom=1.5em,
nohead
}
\usepackage[cam, a4]{crop}
\begin{document}
\crop[cross]
\begin{tabbing}
name name name \= phonephone \= email \kill
\male \ John Doe \> \phone \ 555-555 \> \Letter\ johndoe@hotmail.com \\
\end{tabbing}


\begin{tabular}{p{2cm}p{2cm}p{2cm} }
\male \ John Doe & \phone \ 555-555 &\Letter johndoe@hotmail.com \\
\end{tabular}
\end{document}

Output: enter image description here