-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathlabels.tex
30 lines (21 loc) · 927 Bytes
/
labels.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% Example for http://tex.stackexchange.com/a/133599/828
% based on 'texdoc labels'
\documentclass[10pt]{article}
\usepackage{labels}
\LabelCols=3% Number of columns of labels per page
\LabelRows=7% Number of rows of labels per page
\LeftBorder=1mm% Space added to left border of each label
\RightBorder=1mm% Space added to right border of each label
\TopBorder=1mm% Space to leave at top of sheet
\BottomBorder=1mm% Space to leave at bottom of sheet
\begin{document}
\begin{labels}
Here is the first label
Here is another, separated by an empty line
Here is the third label
This label should be on the next line, because we specified a \(3\times7\) layout.
This label is very very long, and should thus wrap in the space alloted to one label. We can also introduce linebreaks \\ by adding \verb+\\+ somewhere.
Here's the next label
Here's the last label, because it's now time to stop
\end{labels}
\end{document}