编写 Avery 11137 模板的最简单方法

编写 Avery 11137 模板的最简单方法

尝试获取适用于Avery 11137 标签模板而且它比人们想象的要困难得多,因为 Avery 的天才们把它放在了 8.5x7 的页面上,虽然在 8.5x7 的纸上打印也不是不可能,但如果不质疑相对论物理学,这是最接近不可能的事情。

在此处输入图片描述

因此,我想要做的是将其打印成 8.5x11 的尺寸,然后当打印机打印了 7 英寸后发现缺少了 4 英寸时,我就会大笑 =D

我最初的想法是使用这样的表格,生成输出以确保其正常工作,然后删除边框。但我必须确保它适合以下边距:

  • 距顶部 1 英寸
  • 距右侧 0.75 英寸
  • 距左侧 0.75 英寸
  • 行宽 3.5 英寸
  • 拖曳高度为 0.5 英寸

最小工作示例:

编辑我包括p{3in}控制列的宽度

\documentclass{report}

\newcommand{\labelA}{Mastercard}
\newcommand{\labelB}{Visa}
\newcommand{\labelC}{AMEX}
\newcommand{\labelD}{}
\newcommand{\labelE}{}
\newcommand{\labelF}{}
\newcommand{\labelG}{}
\newcommand{\labelH}{}
\newcommand{\labelI}{}
\newcommand{\labelJ}{}
\newcommand{\labelK}{}
\newcommand{\labelL}{}
\newcommand{\labelM}{}
\newcommand{\labelN}{}
\newcommand{\labelO}{}
\newcommand{\labelP}{}
\newcommand{\labelQ}{}
\newcommand{\labelR}{}
\newcommand{\labelS}{}
\newcommand{\labelT}{}
\newcommand{\labelU}{}
\newcommand{\labelV}{}
\begin{document}

\begin{tabular}{ |p{3in}| p{3in}| }
  \hline                       
  \labelA & \labelB \\
  \hline                       
  \labelC & \labelD \\
  \hline                       
  \labelE & \labelF \\
  \hline                       
  \labelG & \labelH \\
  \hline                       
  \labelI & \labelJ \\
  \hline                       
  \labelK & \labelL \\
  \hline                       
  \labelM & \labelN \\
  \hline                       
  \labelO & \labelP \\
  \hline                       
  \labelQ & \labelR \\
  \hline                       
  \labelS & \labelT \\
  \hline                       
  \labelU & \labelV \\
  \hline  
\end{tabular}
\end{document}

如何使用表格实现这一点?有没有更简单的方法?

答案1

如果不打印的话,我无法判断这是否正确,而且我也没有信纸大小的纸张。但是,像这样的东西:

\documentclass{article}
\usepackage[paper=letterpaper,layoutwidth=8.5in,layoutheight=7in,landscape]{geometry}% this says the paper is letterpaper but the layout should be 8.5x7
\usepackage[newdimens]{labels}% let the package do the work...
\LabelCols=2
\LabelRows=10
\LeftPageMargin=0.75in
\RightPageMargin=0.75in
\TopPageMargin=1in
\BottomPageMargin=3.5in
\InterLabelColumn=0mm% adjust as required
\InterLabelRow=0mm
\RightLabelBorder=5mm% adjust to taste
\LeftLabelBorder=5mm
\TopLabelBorder=5mm
\BottomLabelBorder=5mm

\LabelGridtrue %turn on to line stuff up; off to process final version
\numberoflabels=20% set to 1 when you fill in the individual labels - this will just repeat 1 instance 20 times to show the layout.

\begin{document}

\genericlabel{%
        \begin{minipage}{3.25in}% adjust as desired
          Label Text
        \end{minipage}
}

\end{document}

标签

相关内容