生成信封标签

生成信封标签

我有一份要寄出的 50 个信件地址的列表,我正在尝试使用 LaTeX 创建标签以粘贴在信封上。我有一张干净的 A4 纸用于打印(例如 10x2 字段)类似下图的内容,因此我还必须注意几何形状。

地址标签纸示例

我不需要生成像美国邮政服务那样的条形码和类似的标准...我见过 envlab 包,但它似乎不能满足我的需要。

有什么建议么?

答案1

我知道下面的可能不是最好的,但为什么不呢:

在此处输入图片描述

\documentclass[a4paper]{article}
\usepackage{fullpage,tikz}
\usepackage{framed,multicol}

% This command just serves for the single repeated label. Of course these will not 
% be the same but will yield the result.
\newcommand{\repeatedlabel}[1]{%
\foreach \x in {1,...,#1}%
{%
\addresslabel
}%
}

% Sample address 
\def\addresslabel{%
\begin{framed}
Janine Lee\par
641 Caslon Place\par
Hollywood, CA 9015B
\end{framed}}
\begin{document}
\begin{multicols}{2}
\repeatedlabel{8}
\end{multicols}
\end{document}

相关内容