Create template style guide and minor updates to templates and docs (#314)

* Add style guide for creating product template submissions.
* Some updates to TODO.md.  (#270)
* Remove Meta nodes with deprecated product_url attributes.
This commit is contained in:
Jaye Evins
2026-02-22 16:54:07 -05:00
committed by GitHub
parent 226841fe38
commit 06675f8314
19 changed files with 167 additions and 876 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ How To Contribute to gLabels
### Would you like to submit new product templates? ### Would you like to submit new product templates?
* Before submitting, please read [PRODUCT-TEMPLATES.md](PRODUCT-TEMPLATES.md) located in this directory. * Before submitting, please read [PRODUCT-TEMPLATES.md](PRODUCT-TEMPLATES.md) and [TEMPLATE-STYLE.md](TEMPLATE-STYLE.md) located in this directory.
* [Open an issue](https://github.com/j-evins/glabels-qt/issues/new) and attach your completed product template file(s). * [Open an issue](https://github.com/j-evins/glabels-qt/issues/new) and attach your completed product template file(s).
+4 -2
View File
@@ -1,7 +1,9 @@
Manually Creating Product Templates Manually Creating Product Templates
=================================== ===================================
This document is a reference for manually creating *gLabels* product templates. This document is a reference for manually creating *gLabels* product templates. See
[TEMPLATE-STYLE.md](TEMPLATE-STYLE.md) located in this directory for style guidelines
for product template submissions.
*gLabels* searches for templates in several locations as described here:</p> *gLabels* searches for templates in several locations as described here:</p>
@@ -83,7 +85,7 @@ Property | Type | Description
*_description* | string | Translatable description of stationery product. Used in predefined labels instead of description. *_description* | string | Translatable description of stationery product. Used in predefined labels instead of description.
*width* | distance | Page width. Only valid if `size="other"` or `size="roll"`. *width* | distance | Page width. Only valid if `size="other"` or `size="roll"`.
*height* | distance | Page height. Only valid if `size="other"`. Value is ignored if `size="roll"`. *height* | distance | Page height. Only valid if `size="other"`. Value is ignored if `size="roll"`.
*equiv* | string | Equivalent part number. If this property is present, the template is a clone of another template of the same brand. The template will inherit all properties, except brand and name from the other template. This equiv property must refer to a previously defined template - *gLabels* does not currently support forward references. *equiv* | string | Equivalent part number. If this property is present, the template is a clone of another template of the same brand. The template will inherit all properties, except *part* from the other template. This equiv property must refer to a previously defined template - *gLabels* does not currently support forward references.
### Guidelines for Creating Product Descriptions ### Guidelines for Creating Product Descriptions
+120
View File
@@ -0,0 +1,120 @@
gLabels Product Template Style Guide
====================================
This file describes the prefered style for product template submissions. See
[PRODUCT-TEMPLATES.md](PRODUCT-TEMPLATES.md) located in this directory for detailed
systax documentation.
Organization
------------
Template files are located in the [templates](../templates/) directory. The following
is the naming convention for these files:
<pre><i>brand</i>-<i>class</i>-templates.xml</pre>
Where *brand* is the lowercase brand name, and *class* is the media size class (currently
`iso`, `us`, and `other`).
Templates should be sorted in [natural order](https://en.wikipedia.org/wiki/Natural_sort_order)
by part number within each file. An exception to this rule is to group equivalent templates
directly below their referenced template. For example:
```xml
<Template brand="Avery" part="5126" size="US-Letter" _description="Shipping labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="8.5in" height="5.5in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="0in" y0="0in" dx="0in" dy="5.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5526" equiv="5126"/>
<Template brand="Avery" part="8126" equiv="5126"/>
<Template brand="Avery" part="15516" equiv="5126"/>
<Template brand="Avery" part="18126" equiv="5126"/>
<Template brand="Avery" part="5159" size="US-Letter" _description="Address labels">...
```
When creating a new template file, it must be added to the variable template_files in
the [CMakeLists.txt](../templates/CMakeLists.txt) file in this same directory.
*Template* Node Attributes
--------------------------
### *brand* Attribute
This is the brand name or manufacturer of the product. It must match one of the vendors
in the [vendors.xml](../templates/vendors.xml) file. Add a new vendor line if it does not
currently exist.
### *part* Attribute
This is the actual part number of the product. This is usually a short set of numbers and/or
letters. This is not a description or name of the product. The following are examples
of part numbers:
- `5160`
- `WL-102`
- `J8435B`
Sometimes a product includes multiple label types, either as separate sheets or different
types of labels on the same sheet. In these cases, providing a short suffix to part number
is acceptable. For example:
- `3274.1`, `3274.2`, and `3274.3`
- `5931-Disc`, and `5931-Spine`
### *_description* Attribute
- Descriptions should be short. They should describe what the product is in very simple terms
without being too detailed. They should not describe details such as size, quantity, layout,
color, or material. The description should not include brand or part number information.
Size, quantity, layout, brand, and part number are described by other elements of the
template - do not repeat them in the description.
- If at all possible, try to reuse descriptions from other templates (this keeps the
number of unique strings that need translation to a minimum).
- Don't repeat the brand or part number in the description.
- Only capitalize the first word of the description.
The following are good bad descriptions:
| description | Good/Bad | Notes |
|:-------------------------|:--------:|:----------------------------------------------|
| `Address labels` | ✅ | |
| `Address Labels` | ❌ | Capitalized second word of description. |
| `Business cards` | ✅ | |
| `Multipurpose labels` | ✅ | |
| `CD/DVD labels` | ✅ | |
| `19mm x 30mm labels` | ❌ | Don't include size information. |
| `Labels 15 per sheet` | ❌ | Don't include layout or quantity information. |
| `Dymo continuous labels` | ❌ | Don't include brand or part number. |
*Meta* Node Attributes
----------------------
### *category* Attribute
- All templates should include all appropriate `<Meta category=...` nodes.
- Categories must match one of the existing categories in the [categories.xml](../templates/categories.xml) file. Do not add new categories!
- All templates should include either a `<Meta category="label"/>` or `<Meta category="card"/>` node.
### *product_url* Attribute
Unfortunately, manufacturer websites are constantly being updated and rearranged, rendering such deep URLs obsolete very quickly. Therefore,
use of this attribute is deprecated.
+11 -1
View File
@@ -39,7 +39,7 @@ To Do List for gLabels 4.0 -- 2019-10-07
To Do List for post gLabels 4.0 -- 2019-03-17 To Do List for post gLabels 4.0 -- 2026-02-18
============================================= =============================================
- [ ] Create a "built-in" merge source - [ ] Create a "built-in" merge source
@@ -71,4 +71,14 @@ To Do List for post gLabels 4.0 -- 2019-03-17
The current built-in fixed margin seems to confuse people when dealing with The current built-in fixed margin seems to confuse people when dealing with
different horizontal and vertical alignments. different horizontal and vertical alignments.
- [ ] Add support for arbitrary DPI when defining templates. Some label
printers use native units in their label specifications (e.g. pins, pixels, etc.)
This would look something like this
`... dpi="300" ... width="525d" height="350d" ...`
These would be converted to model::Distance when parsing.
- [ ] Resurrect the evolution and vcard backends. This would be optional based
on availability.
-1
View File
@@ -61,7 +61,6 @@
<Template brand="Avery" part="L4785" size="A4" _description="Name badge labels"> <Template brand="Avery" part="L4785" size="A4" _description="Name badge labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.avery.co.uk/avery/en_gb/Products/Naming/Self-Adhesive-Name-Badges/White-self-adhesive-name-badges_L4785_20.htm"/>
<Label-rectangle id="0" width="80mm" height="50mm" round="4mm" x_waste="7.5mm" y_waste="2.5mm"> <Label-rectangle id="0" width="80mm" height="50mm" round="4mm" x_waste="7.5mm" y_waste="2.5mm">
<Markup-margin size="1mm"/> <Markup-margin size="1mm"/>
<Layout nx="2" ny="5" x0="18mm" y0="13mm" dx="95mm" dy="55mm"/> <Layout nx="2" ny="5" x0="18mm" y0="13mm" dx="95mm" dy="55mm"/>
+4 -65
View File
@@ -4,7 +4,6 @@
<Template brand="Begalabel" part="RC-50" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-50" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-1-2-x-1-Rounded-Corner-Label-p15.html"/>
<Label-rectangle id="0" width="1.5in" height="1in" round="0.1in" x_waste="0.05in"> <Label-rectangle id="0" width="1.5in" height="1in" round="0.1in" x_waste="0.05in">
<Layout nx="5" ny="10" x0="0.25in" y0="0.5in" dx="1.625in" dy="1in"/> <Layout nx="5" ny="10" x0="0.25in" y0="0.5in" dx="1.625in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -13,7 +12,6 @@
<Template brand="Begalabel" part="RC-150" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-150" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-1-4-x-2-3-8-Address-Labels-Media-Labels-p17.html"/>
<Label-rectangle id="0" width="2.375in" height="1.25in" round="0.125in" x_waste="0.05in" y_waste="0.05in"> <Label-rectangle id="0" width="2.375in" height="1.25in" round="0.125in" x_waste="0.05in" y_waste="0.05in">
<Layout nx="3" ny="6" x0="0.375in" y0="1.125in" dx="2.66in" dy="1.5in"/> <Layout nx="3" ny="6" x0="0.375in" y0="1.125in" dx="2.66in" dy="1.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -22,7 +20,6 @@
<Template brand="Begalabel" part="RC-200" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-200" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-3-4-x-1-1-4-Barcode-Labels-Media-Labels-p18.html"/>
<Label-rectangle id="0" width="1.75in" height="1.25in" round="0.125in" x_waste="0.05in"> <Label-rectangle id="0" width="1.75in" height="1.25in" round="0.125in" x_waste="0.05in">
<Layout nx="4" ny="8" x0="0.4687in" y0="0.5in" dx="1.9375in" dy="1.25in"/> <Layout nx="4" ny="8" x0="0.4687in" y0="0.5in" dx="1.9375in" dy="1.25in"/>
</Label-rectangle> </Label-rectangle>
@@ -31,7 +28,6 @@
<Template brand="Begalabel" part="RC-250" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-250" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-3-4-x-1-2-Return-Address-Labels-Mailing-Labels-p19.html"/>
<Label-rectangle id="0" width="1.75in" height="0.5in" round="0.05in" x_waste="0.05in"> <Label-rectangle id="0" width="1.75in" height="0.5in" round="0.05in" x_waste="0.05in">
<Layout nx="4" ny="20" x0="0.25in" y0="0.5in" dx="2.0625in" dy="0.5in"/> <Layout nx="4" ny="20" x0="0.25in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -40,7 +36,6 @@
<Template brand="Begalabel" part="RC-300" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-300" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/2-1-4-x-3-4-Address-Labels-Mailing-Labels-p20.html"/>
<Label-rectangle id="0" width="2.25in" height="0.75in" round="0.095in" waste="0.05in"> <Label-rectangle id="0" width="2.25in" height="0.75in" round="0.095in" waste="0.05in">
<Layout nx="3" ny="10" x0="0.375in" y0="0.625in" dx="2.75in" dy="1in"/> <Layout nx="3" ny="10" x0="0.375in" y0="0.625in" dx="2.75in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -49,7 +44,6 @@
<Template brand="Begalabel" part="RC-350" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-350" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/2-5-8-x-1-Address-Labels-Mailing-Labels-p7.html"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.125in" x_waste="0.05in"> <Label-rectangle id="0" width="2.625in" height="1in" round="0.125in" x_waste="0.05in">
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/> <Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -58,7 +52,6 @@
<Template brand="Begalabel" part="RC-400" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-400" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/2-5-8-x-1-1-16-Rounded-Corner-Label-p21.html"/>
<Label-rectangle id="0" width="2.625in" height="1.0625in" round="0.07in" x_waste="0.05in"> <Label-rectangle id="0" width="2.625in" height="1.0625in" round="0.07in" x_waste="0.05in">
<Layout nx="3" ny="10" x0="0.125in" y0="0.1875in" dx="2.8125in" dy="1.0625in"/> <Layout nx="3" ny="10" x0="0.125in" y0="0.1875in" dx="2.8125in" dy="1.0625in"/>
</Label-rectangle> </Label-rectangle>
@@ -67,7 +60,6 @@
<Template brand="Begalabel" part="RC-450" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-450" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-1-2-x-5-Shipping-Labels-Address-Labels-p22.html"/>
<Label-rectangle id="0" width="3.5in" height="5in" round="0.1in" x_waste="0.05in"> <Label-rectangle id="0" width="3.5in" height="5in" round="0.1in" x_waste="0.05in">
<Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/> <Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/>
</Label-rectangle> </Label-rectangle>
@@ -76,7 +68,6 @@
<Template brand="Begalabel" part="RC-500" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-500" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-3-4-x-1-1-4-Address-Labels-Shipping-Labels-p23.html"/>
<Label-rectangle id="0" width="3.75in" height="1.25in" round="0.125in" waste="0.05in"> <Label-rectangle id="0" width="3.75in" height="1.25in" round="0.125in" waste="0.05in">
<Layout nx="2" ny="6" x0="0.375in" y0="1.125in" dx="4in" dy="1.5in"/> <Layout nx="2" ny="6" x0="0.375in" y0="1.125in" dx="4in" dy="1.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -85,7 +76,6 @@
<Template brand="Begalabel" part="RC-550" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-550" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-3-4-x-2-Shipping-Labels-Address-Labels-p24.html"/>
<Label-rectangle id="0" width="3.75in" height="2in" round="0.125in" waste="0.05in"> <Label-rectangle id="0" width="3.75in" height="2in" round="0.125in" waste="0.05in">
<Layout nx="2" ny="4" x0="0.375in" y0="1.125in" dx="4in" dy="2.25in"/> <Layout nx="2" ny="4" x0="0.375in" y0="1.125in" dx="4in" dy="2.25in"/>
</Label-rectangle> </Label-rectangle>
@@ -94,7 +84,6 @@
<Template brand="Begalabel" part="RC-600" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-600" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-3-4-x-3-Shipping-Labels-Address-Labels-p25.html"/>
<Label-rectangle id="0" width="3.75in" height="3in" round="0.095in" waste="0.05in"> <Label-rectangle id="0" width="3.75in" height="3in" round="0.095in" waste="0.05in">
<Layout nx="2" ny="3" x0="0.375in" y0="0.625in" dx="4in" dy="3.375in"/> <Layout nx="2" ny="3" x0="0.375in" y0="0.625in" dx="4in" dy="3.375in"/>
</Label-rectangle> </Label-rectangle>
@@ -103,7 +92,6 @@
<Template brand="Begalabel" part="RC-650" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-650" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-3-4-x-4-3-4-Shipping-Labels-Address-Labels-p26.html"/>
<Label-rectangle id="0" width="3.75in" height="4.75in" round="0.095in" waste="0.05in"> <Label-rectangle id="0" width="3.75in" height="4.75in" round="0.095in" waste="0.05in">
<Layout nx="2" ny="2" x0="0.375in" y0="0.625in" dx="4in" dy="5in"/> <Layout nx="2" ny="2" x0="0.375in" y0="0.625in" dx="4in" dy="5in"/>
</Label-rectangle> </Label-rectangle>
@@ -112,7 +100,6 @@
<Template brand="Begalabel" part="RC-700" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-700" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-3-8-x-2-1-3-Name-Badge-Labels-Name-Tag-Labels-p27.html"/>
<Label-rectangle id="0" width="3.375in" height="2.3333in" round="0.188in" waste="0.05in"> <Label-rectangle id="0" width="3.375in" height="2.3333in" round="0.188in" waste="0.05in">
<Layout nx="2" ny="4" x0="0.6875in" y0="0.594in" dx="3.75in" dy="2.52083in"/> <Layout nx="2" ny="4" x0="0.6875in" y0="0.594in" dx="3.75in" dy="2.52083in"/>
</Label-rectangle> </Label-rectangle>
@@ -121,7 +108,6 @@
<Template brand="Begalabel" part="RC-750" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-750" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-7-16-x-15-16-Filing-Labels-File-Folder-Labels-p28.html"/>
<Label-rectangle id="0" width="3.4375in" height="0.9375in" round="0.095in" waste="0.05in"> <Label-rectangle id="0" width="3.4375in" height="0.9375in" round="0.095in" waste="0.05in">
<Layout nx="2" ny="9" x0="0.5in" y0="0.5in" dx="4.0625in" dy="1.1328in"/> <Layout nx="2" ny="9" x0="0.5in" y0="0.5in" dx="4.0625in" dy="1.1328in"/>
</Label-rectangle> </Label-rectangle>
@@ -130,7 +116,6 @@
<Template brand="Begalabel" part="RC-800" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-800" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-7-16-x-2-3-Filing-Labels-File-Folder-Labels-p29.html"/>
<Label-rectangle id="0" width="3.4375in" height="0.66667in" round="0.095in" x_waste="0.05in"> <Label-rectangle id="0" width="3.4375in" height="0.66667in" round="0.095in" x_waste="0.05in">
<Layout nx="2" ny="15" x0="0.5in" y0="0.5in" dx="4.0625in" dy="0.66667in"/> <Layout nx="2" ny="15" x0="0.5in" y0="0.5in" dx="4.0625in" dy="0.66667in"/>
</Label-rectangle> </Label-rectangle>
@@ -139,7 +124,6 @@
<Template brand="Begalabel" part="RC-850" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-850" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/-3-x-5-8-Filing-Labels-File-Folder-Labels-p30.html"/>
<Label-rectangle id="0" width="3in" height="0.625in" round="0.095in" x_waste="0.05in"> <Label-rectangle id="0" width="3in" height="0.625in" round="0.095in" x_waste="0.05in">
<Layout nx="2" ny="16" x0="0.8437in" y0="0.5in" dx="3.8125in" dy="0.625in"/> <Layout nx="2" ny="16" x0="0.8437in" y0="0.5in" dx="3.8125in" dy="0.625in"/>
</Label-rectangle> </Label-rectangle>
@@ -148,7 +132,6 @@
<Template brand="Begalabel" part="RC-900" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-900" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-4-x-2-Rounded-Corner-Label-p31.html"/>
<Label-rectangle id="0" width="0.75in" height="2in" round="0.132in" x_waste="0.04in" y_waste="0.05in"> <Label-rectangle id="0" width="0.75in" height="2in" round="0.132in" x_waste="0.04in" y_waste="0.05in">
<Layout nx="8" ny="5" x0="0.921875in" y0="0.25in" dx="0.8437in" dy="2.1562in"/> <Layout nx="8" ny="5" x0="0.921875in" y0="0.25in" dx="0.8437in" dy="2.1562in"/>
</Label-rectangle> </Label-rectangle>
@@ -157,7 +140,6 @@
<Template brand="Begalabel" part="RC-950" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-950" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-1-Shipping-Labels-Address-Labels-p9.html"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.064in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="1in" round="0.064in" x_waste="0.05in">
<Layout nx="2" ny="10" x0="0.1875in" y0="0.5in" dx="4.125in" dy="1in"/> <Layout nx="2" ny="10" x0="0.1875in" y0="0.5in" dx="4.125in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -166,7 +148,6 @@
<Template brand="Begalabel" part="RC-1000" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1000" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-1-1-2-Shipping-Labels-Address-Labels-p32.html"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.095in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="1.5in" round="0.095in" x_waste="0.05in">
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/> <Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -175,7 +156,6 @@
<Template brand="Begalabel" part="RC-1050" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1050" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-1-1-3-Shipping-Labels-Address-Labels-p33.html"/>
<Label-rectangle id="0" width="4in" height="1.33333in" round="0.095in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="1.33333in" round="0.095in" x_waste="0.05in">
<Layout nx="2" ny="7" x0="0.1875in" y0="0.83333in" dx="4.125in" dy="1.33333in"/> <Layout nx="2" ny="7" x0="0.1875in" y0="0.83333in" dx="4.125in" dy="1.33333in"/>
</Label-rectangle> </Label-rectangle>
@@ -184,7 +164,6 @@
<Template brand="Begalabel" part="RC-1100" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1100" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-2-Shipping-Labels-Address-Labels-p10.html"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.19in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="2in" round="0.19in" x_waste="0.05in">
<Layout nx="2" ny="5" x0="0.1875in" y0="0.5in" dx="4.125in" dy="2in"/> <Layout nx="2" ny="5" x0="0.1875in" y0="0.5in" dx="4.125in" dy="2in"/>
</Label-rectangle> </Label-rectangle>
@@ -193,7 +172,6 @@
<Template brand="Begalabel" part="RC-1200" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1200" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-3-1-3-Shipping-Labels-Address-Labels-p35.html"/>
<Label-rectangle id="0" width="4in" height="3.33333in" round="0.16in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="3.33333in" round="0.16in" x_waste="0.05in">
<Layout nx="2" ny="3" x0="0.1875in" y0="0.5in" dx="4.125in" dy="3.33333in"/> <Layout nx="2" ny="3" x0="0.1875in" y0="0.5in" dx="4.125in" dy="3.33333in"/>
</Label-rectangle> </Label-rectangle>
@@ -202,7 +180,6 @@
<Template brand="Begalabel" part="RC-1225" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1225" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-3-9-16-Label-Rounded-Corner-Label-p72.html"/>
<Label-rectangle id="0" width="4in" height="3.5625in" round="0.07in" x_waste="0.04in"> <Label-rectangle id="0" width="4in" height="3.5625in" round="0.07in" x_waste="0.04in">
<Layout nx="2" ny="3" x0="0.20315in" y0="0.15625in" dx="4.0937in" dy="3.5625in"/> <Layout nx="2" ny="3" x0="0.20315in" y0="0.15625in" dx="4.0937in" dy="3.5625in"/>
</Label-rectangle> </Label-rectangle>
@@ -211,7 +188,6 @@
<Template brand="Begalabel" part="RC-1240" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1240" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-x-5-Shipping-Labels-Mailing-Labels-p265.html"/>
<Label-rectangle id="0" width="4in" height="5in" round="0.11in" x_waste="0.05in"> <Label-rectangle id="0" width="4in" height="5in" round="0.11in" x_waste="0.05in">
<Layout nx="2" ny="2" x0="0.16667in" y0="0.5in" dx="4.16667in" dy="5in"/> <Layout nx="2" ny="2" x0="0.16667in" y0="0.5in" dx="4.16667in" dy="5in"/>
</Label-rectangle> </Label-rectangle>
@@ -220,18 +196,14 @@
<Template brand="Begalabel" part="RC-1250" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="RC-1250" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/8-1-8-x-5-Shipping-Labels-p36.html"/>
<Label-rectangle id="0" width="8.125in" height="5in" round="0.09in" x_waste="0.05in"> <Label-rectangle id="0" width="8.125in" height="5in" round="0.09in" x_waste="0.05in">
<Layout nx="1" ny="2" x0="0.1875in" y0="0.5in" dx="8.125in" dy="5in"/> <Layout nx="1" ny="2" x0="0.1875in" y0="0.5in" dx="8.125in" dy="5in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<Template brand="Begalabel" part="AC-50" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-50" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-1-2-x-1-Label-Angled-Corner-p37.html"/>
<Label-rectangle id="0" width="1.5in" height="1in"> <Label-rectangle id="0" width="1.5in" height="1in">
<Layout nx="5" ny="10" x0="0.5in" y0="0.5in" dx="1.5in" dy="1in"/> <Layout nx="5" ny="10" x0="0.5in" y0="0.5in" dx="1.5in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -240,7 +212,6 @@
<Template brand="Begalabel" part="AC-100" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-100" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/1-1-2-x-1-2-Label-Angled-Corner-p38.html"/>
<Label-rectangle id="0" width="1.5in" height="0.5in"> <Label-rectangle id="0" width="1.5in" height="0.5in">
<Layout nx="5" ny="20" x0="0.5in" y0="0.5in" dx="1.5in" dy="0.5in"/> <Layout nx="5" ny="20" x0="0.5in" y0="0.5in" dx="1.5in" dy="0.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -249,7 +220,6 @@
<Template brand="Begalabel" part="AC-150" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-150" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/17-20-x-11-15-Label-Angled-Corner-p39.html"/>
<Label-rectangle id="0" width="0.85in" height="0.7333in"> <Label-rectangle id="0" width="0.85in" height="0.7333in">
<Layout nx="10" ny="15" x0="0in" y0="0in" dx="0.85in" dy="0.7333in"/> <Layout nx="10" ny="15" x0="0in" y0="0in" dx="0.85in" dy="0.7333in"/>
</Label-rectangle> </Label-rectangle>
@@ -258,7 +228,6 @@
<Template brand="Begalabel" part="AC-200" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-200" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/2-x-1-Label-Angled-Corner-p40.html"/>
<Label-rectangle id="0" width="2in" height="1in"> <Label-rectangle id="0" width="2in" height="1in">
<Layout nx="4" ny="10" x0="0.25in" y0="0.5in" dx="2in" dy="1in"/> <Layout nx="4" ny="10" x0="0.25in" y0="0.5in" dx="2in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -267,7 +236,6 @@
<Template brand="Begalabel" part="AC-250" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-250" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/2-5-6-x-1-Label-Angled-Corner-p41.html"/>
<Label-rectangle id="0" width="2.8333in" height="1in"> <Label-rectangle id="0" width="2.8333in" height="1in">
<Layout nx="3" ny="11" x0="0in" y0="0in" dx="2.8333in" dy="1in"/> <Layout nx="3" ny="11" x0="0in" y0="0in" dx="2.8333in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -276,7 +244,6 @@
<Template brand="Begalabel" part="AC-450" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-450" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/3-4-x-1-2-Label-Angled-Corner-p45.html"/>
<Label-rectangle id="0" width="0.75in" height="0.5in"> <Label-rectangle id="0" width="0.75in" height="0.5in">
<Layout nx="10" ny="20" x0="0.5in" y0="0.5in" dx="0.75in" dy="0.5in"/> <Layout nx="10" ny="20" x0="0.5in" y0="0.5in" dx="0.75in" dy="0.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -285,7 +252,6 @@
<Template brand="Begalabel" part="AC-550" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-550" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-1-4--x-1-4-7-Label-Angled-Corner-p47.html"/>
<Label-rectangle id="0" width="4.25in" height="1.5714in"> <Label-rectangle id="0" width="4.25in" height="1.5714in">
<Layout nx="2" ny="7" x0="0in" y0="0in" dx="4.25in" dy="1.5714in"/> <Layout nx="2" ny="7" x0="0in" y0="0in" dx="4.25in" dy="1.5714in"/>
</Label-rectangle> </Label-rectangle>
@@ -294,7 +260,6 @@
<Template brand="Begalabel" part="AC-600" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-600" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-1-4-x-2-Shipping-Labels-Address-Labels-p48.html"/>
<Label-rectangle id="0" width="4.25in" height="2in"> <Label-rectangle id="0" width="4.25in" height="2in">
<Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/> <Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/>
</Label-rectangle> </Label-rectangle>
@@ -303,7 +268,6 @@
<Template brand="Begalabel" part="AC-500" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-500" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-1-4-x-1-Label-Angled-Corner-p46.html"/>
<Label-rectangle id="0" width="4.25in" height="1in"> <Label-rectangle id="0" width="4.25in" height="1in">
<Layout nx="2" ny="11" x0="0in" y0="0in" dx="4.25in" dy="1in"/> <Layout nx="2" ny="11" x0="0in" y0="0in" dx="4.25in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -312,7 +276,6 @@
<Template brand="Begalabel" part="AC-700" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-700" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-1-4-x-3-2-3-Label-Angled-Corner-p50.html"/>
<Label-rectangle id="0" width="4.25in" height="3.6667in"> <Label-rectangle id="0" width="4.25in" height="3.6667in">
<Layout nx="2" ny="3" x0="0in" y0="0in" dx="4.25in" dy="3.6667in"/> <Layout nx="2" ny="3" x0="0in" y0="0in" dx="4.25in" dy="3.6667in"/>
</Label-rectangle> </Label-rectangle>
@@ -321,7 +284,6 @@
<Template brand="Begalabel" part="AC-750" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-750" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/4-1-4-x-5-1-2-Quarter-Sheet-Shipping-Labels-p51.html"/>
<Label-rectangle id="0" width="4.25in" height="5.5in"> <Label-rectangle id="0" width="4.25in" height="5.5in">
<Layout nx="2" ny="2" x0="0in" y0="0in" dx="4.25in" dy="5.5in"/> <Layout nx="2" ny="2" x0="0in" y0="0in" dx="4.25in" dy="5.5in"/>
</Label-rectangle> </Label-rectangle>
@@ -330,7 +292,6 @@
<Template brand="Begalabel" part="AC-800" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-800" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/8-1-2-x-1-Label-Angled-Corner-p52.html"/>
<Label-rectangle id="0" width="8.5in" height="1in"> <Label-rectangle id="0" width="8.5in" height="1in">
<Layout nx="1" ny="11" x0="0in" y0="0in" dx="8.5in" dy="1in"/> <Layout nx="1" ny="11" x0="0in" y0="0in" dx="8.5in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
@@ -339,7 +300,6 @@
<Template brand="Begalabel" part="AC-850" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-850" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/8-1-2-x-1-4-7-Label-Angled-Corner-p53.html"/>
<Label-rectangle id="0" width="8.5in" height="1.5714in"> <Label-rectangle id="0" width="8.5in" height="1.5714in">
<Layout nx="1" ny="7" x0="0in" y0="0in" dx="8.5in" dy="1.5714in"/> <Layout nx="1" ny="7" x0="0in" y0="0in" dx="8.5in" dy="1.5714in"/>
</Label-rectangle> </Label-rectangle>
@@ -348,7 +308,6 @@
<Template brand="Begalabel" part="AC-1000" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-1000" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/8-1-2-x-3-2-3-Label-Angled-Corner-p56.html"/>
<Label-rectangle id="0" width="8.5in" height="3.6667in"> <Label-rectangle id="0" width="8.5in" height="3.6667in">
<Layout nx="1" ny="3" x0="0in" y0="0in" dx="8.5in" dy="3.6667in"/> <Layout nx="1" ny="3" x0="0in" y0="0in" dx="8.5in" dy="3.6667in"/>
</Label-rectangle> </Label-rectangle>
@@ -357,18 +316,14 @@
<Template brand="Begalabel" part="AC-1050" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="AC-1050" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.begalabel.com/8-1-2-x-5-1-2-Half-Sheet-Shipping-Labels-p57.html"/>
<Label-rectangle id="0" width="8.5in" height="5.5in"> <Label-rectangle id="0" width="8.5in" height="5.5in">
<Layout nx="1" ny="2" x0="0in" y0="0in" dx="8.5in" dy="5.5in"/> <Layout nx="1" ny="2" x0="0in" y0="0in" dx="8.5in" dy="5.5in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<Template brand="Begalabel" part="O-100" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-100" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/1-inch-Circle-Label-p61.html"/>
<Label-round id="0" radius="0.5in" waste="0.05in"> <Label-round id="0" radius="0.5in" waste="0.05in">
<Layout nx="7" ny="9" x0="0.5in" y0="0.4375in" dx="1.125in" dy="1.125in"/> <Layout nx="7" ny="9" x0="0.5in" y0="0.4375in" dx="1.125in" dy="1.125in"/>
</Label-round> </Label-round>
@@ -377,7 +332,6 @@
<Template brand="Begalabel" part="O-200" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-200" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/1-1-2-Round-Labels-Circle-Identification-Labels-p62.html"/>
<Label-round id="0" radius="0.75in" waste="0.05in"> <Label-round id="0" radius="0.75in" waste="0.05in">
<Layout nx="4" ny="5" x0="0.5in" y0="0.75in" dx="2in" dy="2in"/> <Layout nx="4" ny="5" x0="0.5in" y0="0.75in" dx="2in" dy="2in"/>
</Label-round> </Label-round>
@@ -386,7 +340,6 @@
<Template brand="Begalabel" part="O-300" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-300" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/1-5-8-Round-Labels-Circle-Identification-Labels-p63.html"/>
<Label-round id="0" radius="0.8125in" waste="0.02in"> <Label-round id="0" radius="0.8125in" waste="0.02in">
<Layout nx="4" ny="6" x0="0.4375in" y0="0.5in" dx="2in" dy="1.675in"/> <Layout nx="4" ny="6" x0="0.4375in" y0="0.5in" dx="2in" dy="1.675in"/>
</Label-round> </Label-round>
@@ -395,7 +348,6 @@
<Template brand="Begalabel" part="O-400" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-400" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/2-Inch-Circle-Label-p64.html"/>
<Label-round id="0" radius="1in" waste="0.03in"> <Label-round id="0" radius="1in" waste="0.03in">
<Layout nx="4" ny="5" x0="0.1562in" y0="0.375in" dx="2.0625in" dy="2.0625in"/> <Layout nx="4" ny="5" x0="0.1562in" y0="0.375in" dx="2.0625in" dy="2.0625in"/>
</Label-round> </Label-round>
@@ -404,7 +356,6 @@
<Template brand="Begalabel" part="O-500" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-500" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/2-1-2-Round-Labels-Circle-Identification-Labels-p65.html"/>
<Label-round id="0" radius="1.25in" waste="0.03in"> <Label-round id="0" radius="1.25in" waste="0.03in">
<Layout nx="3" ny="4" x0="0.25in" y0="0.4062in" dx="2.75in" dy="2.5625in"/> <Layout nx="3" ny="4" x0="0.25in" y0="0.4062in" dx="2.75in" dy="2.5625in"/>
</Label-round> </Label-round>
@@ -413,7 +364,6 @@
<Template brand="Begalabel" part="O-600" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-600" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/3-Inch-Circle-Label-p66.html"/>
<Label-round id="0" radius="1.5in" waste="0.05in"> <Label-round id="0" radius="1.5in" waste="0.05in">
<Layout nx="2" ny="3" x0="1.1875in" y0="0.875in" dx="3.125in" dy="3.125in"/> <Layout nx="2" ny="3" x0="1.1875in" y0="0.875in" dx="3.125in" dy="3.125in"/>
</Label-round> </Label-round>
@@ -422,18 +372,14 @@
<Template brand="Begalabel" part="O-700" size="US-Letter" _description="Round labels"> <Template brand="Begalabel" part="O-700" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.begalabel.com/3-5-16-Circle-Label-p67.html"/>
<Label-round id="0" radius="1.65625in" waste="0.02in"> <Label-round id="0" radius="1.65625in" waste="0.02in">
<Layout nx="2" ny="3" x0="0.625in" y0="0.4843in" dx="3.9375in" dy="3.3594in"/> <Layout nx="2" ny="3" x0="0.625in" y0="0.4843in" dx="3.9375in" dy="3.3594in"/>
</Label-round> </Label-round>
</Template> </Template>
<Template brand="Begalabel" part="V-100" size="US-Letter" _description="Elliptical labels"> <Template brand="Begalabel" part="V-100" size="US-Letter" _description="Elliptical labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.begalabel.com/1-1-2-x-2-3-Oval-Label-p262.html"/>
<Label-ellipse id="0" width="1.5in" height="0.75in" waste="0.03in"> <Label-ellipse id="0" width="1.5in" height="0.75in" waste="0.03in">
<Layout nx="5" ny="11" x0="0.375in" y0="0.5in" dx="1.5625in" dy="0.925in"/> <Layout nx="5" ny="11" x0="0.375in" y0="0.5in" dx="1.5625in" dy="0.925in"/>
</Label-ellipse> </Label-ellipse>
@@ -442,7 +388,6 @@
<Template brand="Begalabel" part="V-200" size="US-Letter" _description="Elliptical labels"> <Template brand="Begalabel" part="V-200" size="US-Letter" _description="Elliptical labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.begalabel.com/2-x-1-Oval-Label-p263.html"/>
<Label-ellipse id="0" width="2in" height="1in" waste="0.05in"> <Label-ellipse id="0" width="2in" height="1in" waste="0.05in">
<Layout nx="3" ny="9" x0="1in" y0="0.5in" dx="2.25in" dy="1.125in"/> <Layout nx="3" ny="9" x0="1in" y0="0.5in" dx="2.25in" dy="1.125in"/>
</Label-ellipse> </Label-ellipse>
@@ -451,7 +396,6 @@
<Template brand="Begalabel" part="V-400" size="US-Letter" _description="Elliptical labels"> <Template brand="Begalabel" part="V-400" size="US-Letter" _description="Elliptical labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.begalabel.com/2-1-2-x-1-3-4-Oval-Label-p264.html"/>
<Label-ellipse id="0" width="2.5in" height="1.75in" waste="0.05in"> <Label-ellipse id="0" width="2.5in" height="1.75in" waste="0.05in">
<Layout nx="3" ny="5" x0="0.375in" y0="0.875in" dx="2.625in" dy="1.875in"/> <Layout nx="3" ny="5" x0="0.375in" y0="0.875in" dx="2.625in" dy="1.875in"/>
</Label-ellipse> </Label-ellipse>
@@ -461,15 +405,14 @@
<Template brand="Begalabel" part="M-200 (medium)" size="US-Letter" _description="CD/DVD labels"> <Template brand="Begalabel" part="M-200 (medium)" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/4-5-8-CD-&amp;-DVD-Label-2-per-sheet-p68.html"/>
<Label-cd id="0" radius="2.3125in" hole="0.814in" waste="0.05in"> <Label-cd id="0" radius="2.3125in" hole="0.814in" waste="0.05in">
<Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="5in" dy="5in"/> <Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="5in" dy="5in"/>
</Label-cd> </Label-cd>
</Template> </Template>
<Template brand="Begalabel" part="M-200 (box)" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="M-200 (box)" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/4-5-8-CD-&amp;-DVD-Label-2-per-sheet-p68.html"/>
<Label-rectangle id="0" width="0.222in" height="4.69in" round="0.064in" x_waste="0.05in" y_waste="0.05in"> <Label-rectangle id="0" width="0.222in" height="4.69in" round="0.064in" x_waste="0.05in" y_waste="0.05in">
<Layout nx="2" ny="2" x0="0.5in" y0="0.585in" dx="0.47in" dy="4.87in"/> <Layout nx="2" ny="2" x0="0.5in" y0="0.585in" dx="0.47in" dy="4.87in"/>
</Label-rectangle> </Label-rectangle>
@@ -478,7 +421,6 @@
<Template brand="Begalabel" part="M-400" size="US-Letter" _description="CD/DVD labels"> <Template brand="Begalabel" part="M-400" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/4-1-2-CD-&amp;-DVD-Label-2-per-sheet-p69.html"/>
<Label-cd id="0" radius="2.25in" hole="0.814in" waste="0.05in"> <Label-cd id="0" radius="2.25in" hole="0.814in" waste="0.05in">
<Layout nx="1" ny="2" x0="2in" y0="0.5in" dx="5.5in" dy="5.5in"/> <Layout nx="1" ny="2" x0="2in" y0="0.5in" dx="5.5in" dy="5.5in"/>
</Label-cd> </Label-cd>
@@ -487,24 +429,23 @@
<Template brand="Begalabel" part="M-600 (medium)" size="US-Letter" _description="CD/DVD labels"> <Template brand="Begalabel" part="M-600 (medium)" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/Neato-Compatible-4.52-CD-&amp;-DVD-Label--3-per-sheet-p70.html"/>
<Label-cd id="0" radius="2.26in" hole="0.814in" waste="0.025in"> <Label-cd id="0" radius="2.26in" hole="0.814in" waste="0.025in">
<Layout nx="1" ny="2" x0="0.25in" y0="0.25in" dy="5.98in"/> <Layout nx="1" ny="2" x0="0.25in" y0="0.25in" dy="5.98in"/>
<Layout nx="1" ny="1" x0="3.729in" y0="3.24in"/> <Layout nx="1" ny="1" x0="3.729in" y0="3.24in"/>
</Label-cd> </Label-cd>
</Template> </Template>
<Template brand="Begalabel" part="M-600 (box1)" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="M-600 (box1)" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/Neato-Compatible-4.52-CD-&amp;-DVD-Label--3-per-sheet-p70.html"/>
<Label-rectangle id="0" width="2.753in" height="1.973in" round="0.16in" waste="0.025in"> <Label-rectangle id="0" width="2.753in" height="1.973in" round="0.16in" waste="0.025in">
<Layout nx="1" ny="2" x0="5.185in" y0="0.748in" dy="7.78in"/> <Layout nx="1" ny="2" x0="5.185in" y0="0.748in" dy="7.78in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<Template brand="Begalabel" part="M-600 (box2)" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="M-600 (box2)" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/Neato-Compatible-4.52-CD-amp;&amp;-DVD-Label--3-per-sheet-p70.html"/>
<Label-rectangle id="0" width="3.128in" height="1in" round="0.16in" waste="0.025in"> <Label-rectangle id="0" width="3.128in" height="1in" round="0.16in" waste="0.025in">
<Layout nx="1" ny="1" x0="0.373in" y0="5in"/> <Layout nx="1" ny="1" x0="0.373in" y0="5in"/>
</Label-rectangle> </Label-rectangle>
@@ -513,15 +454,14 @@
<Template brand="Begalabel" part="M-800 (medium)" size="US-Letter" _description="CD/DVD labels"> <Template brand="Begalabel" part="M-800 (medium)" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/4-1-2-Inch-CD-&amp;-DVD-Label-2-per-sheet-p71.html"/>
<Label-cd id="0" radius="2.25in" hole="0.814in" waste="0.05in"> <Label-cd id="0" radius="2.25in" hole="0.814in" waste="0.05in">
<Layout nx="1" ny="2" x0="2in" y0="0.5in" dx="5.5in" dy="5.5in"/> <Layout nx="1" ny="2" x0="2in" y0="0.5in" dx="5.5in" dy="5.5in"/>
</Label-cd> </Label-cd>
</Template> </Template>
<Template brand="Begalabel" part="M-800 (box)" size="US-Letter" _description="Rectangular labels"> <Template brand="Begalabel" part="M-800 (box)" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/4-1-2-Inch-CD-&amp;-DVD-Label-2-per-sheet-p71.html"/>
<Label-rectangle id="0" width="4.757in" height="0.258in" x_waste="0.05in"> <Label-rectangle id="0" width="4.757in" height="0.258in" x_waste="0.05in">
<Layout nx="1" ny="2" x0="1.872in" y0="5.242in" dx="4.757in" dy="0.258in"/> <Layout nx="1" ny="2" x0="1.872in" y0="5.242in" dx="4.757in" dy="0.258in"/>
</Label-rectangle> </Label-rectangle>
@@ -530,7 +470,6 @@
<Template brand="Begalabel" part="M-1000" size="US-Letter" _description="Cassette labels"> <Template brand="Begalabel" part="M-1000" size="US-Letter" _description="Cassette labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.begalabel.com/3-1-2-x-1-2-3-Inch-Cassette-Tape-Face-Label-12-per-sheet-p76.html"/>
<Label-rectangle id="0" width="3.5in" height="1.66667in"> <Label-rectangle id="0" width="3.5in" height="1.66667in">
<Markup-line x1="0in" y1="0.16in" x2="0.16in" y2="0"/> <Markup-line x1="0in" y1="0.16in" x2="0.16in" y2="0"/>
<Markup-line x1="3.5in" y1="0.16in" x2="3.34in" y2="0"/> <Markup-line x1="3.5in" y1="0.16in" x2="3.34in" y2="0"/>
+3 -7
View File
@@ -18,14 +18,10 @@
<Template brand="Desmat" part="A4ST-3CD" size="A4" _description="CD/DVD labels"> <Template brand="Desmat" part="A4ST-3CD" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.desmat.com/product.php?id=34"/>
<Label-cd id="0" radius="55mm" hole="15.5mm" waste="2mm"> <Label-cd id="0" radius="55mm" hole="15.5mm" waste="2mm">
<Markup-margin size="9mm"/> <Markup-margin size="9mm"/>
<!-- <Layout nx="1" ny="2" x0="9mm" y0="9.5mm" dx="120mm" dy="166.5mm"/> <Layout nx="1" ny="2" x0="91.5mm" y0="9mm" dx="119.5mm" dy="166mm"/>
<Layout nx="1" ny="1" x0="91mm" y0="93mm" dx="120mm" dy="120mm"/> --> <Layout nx="1" ny="1" x0="9mm" y0="92mm" dx="120mm" dy="120mm"/>
<Layout nx="1" ny="2" x0="91.5mm" y0="9mm" dx="119.5mm" dy="166mm"/>
<Layout nx="1" ny="1" x0="9mm" y0="92mm" dx="120mm" dy="120mm"/>
</Label-cd> </Label-cd>
</Template> </Template>
-63
View File
@@ -4,7 +4,6 @@
<Template brand="Endisch" part="6500012x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500012x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round12_e.html"/>
<Label-round id="0" radius="6mm" waste="0.6mm"> <Label-round id="0" radius="6mm" waste="0.6mm">
<Layout nx="13" ny="18" x0="9mm" y0="15mm" dx="15mm" dy="15mm"/> <Layout nx="13" ny="18" x0="9mm" y0="15mm" dx="15mm" dy="15mm"/>
</Label-round> </Label-round>
@@ -13,7 +12,6 @@
<Template brand="Endisch" part="6500020x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500020x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round20_e.html"/>
<Label-round id="0" radius="10mm" waste="0.5mm"> <Label-round id="0" radius="10mm" waste="0.5mm">
<Layout nx="8" ny="12" x0="16.25mm" y0="14.75mm" dx="22.5mm" dy="22.5mm"/> <Layout nx="8" ny="12" x0="16.25mm" y0="14.75mm" dx="22.5mm" dy="22.5mm"/>
</Label-round> </Label-round>
@@ -30,7 +28,6 @@
<Template brand="Endisch" part="6500030x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500030x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round30_e.html"/>
<Label-round id="0" radius="15mm" waste="0.5mm"> <Label-round id="0" radius="15mm" waste="0.5mm">
<Layout nx="6" ny="8" x0="8.75mm" y0="19.75mm" dx="32.5mm" dy="32.5mm"/> <Layout nx="6" ny="8" x0="8.75mm" y0="19.75mm" dx="32.5mm" dy="32.5mm"/>
</Label-round> </Label-round>
@@ -39,7 +36,6 @@
<Template brand="Endisch" part="6500040x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500040x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round40_e.html"/>
<Label-round id="0" radius="20mm" waste="1.5mm"> <Label-round id="0" radius="20mm" waste="1.5mm">
<Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/> <Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/>
</Label-round> </Label-round>
@@ -56,7 +52,6 @@
<Template brand="Endisch" part="6500060x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500060x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round60_e.html"/>
<Label-round id="0" radius="30mm" waste="1mm"> <Label-round id="0" radius="30mm" waste="1mm">
<Layout nx="3" ny="4" x0="8mm" y0="18mm" dx="67mm" dy="67mm"/> <Layout nx="3" ny="4" x0="8mm" y0="18mm" dx="67mm" dy="67mm"/>
</Label-round> </Label-round>
@@ -89,7 +84,6 @@
<Template brand="Endisch" part="6500085x" size="A4" _description="Round labels"> <Template brand="Endisch" part="6500085x" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/round85_e.html"/>
<Label-round id="0" radius="42.5mm" waste="1.5mm"> <Label-round id="0" radius="42.5mm" waste="1.5mm">
<Layout nx="2" ny="3" x0="15mm" y0="11mm" dx="95mm" dy="95mm"/> <Layout nx="2" ny="3" x0="15mm" y0="11mm" dx="95mm" dy="95mm"/>
</Label-round> </Label-round>
@@ -106,15 +100,11 @@
<Template brand="Endisch" part="6400080x" size="A4" _description="Elliptical labels"> <Template brand="Endisch" part="6400080x" size="A4" _description="Elliptical labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/oval80_e.html"/>
<Label-ellipse id="0" width="80mm" height="47mm" waste="1.5mm"> <Label-ellipse id="0" width="80mm" height="47mm" waste="1.5mm">
<Layout nx="2" ny="5" x0="15mm" y0="11mm" dx="100mm" dy="57mm"/> <Layout nx="2" ny="5" x0="15mm" y0="11mm" dx="100mm" dy="57mm"/>
</Label-ellipse> </Label-ellipse>
</Template> </Template>
<Template brand="Endisch" part="6502015x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6502015x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
@@ -126,7 +116,6 @@
<Template brand="Endisch" part="6502020x" size="A4" _description="Square labels"> <Template brand="Endisch" part="6502020x" size="A4" _description="Square labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="square-label"/> <Meta category="square-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/20x20_e.html"/>
<Label-rectangle id="0" width="20mm" height="20mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="20mm" height="20mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="9" ny="14" x0="15mm" y0="8.5mm" dx="20mm" dy="20mm"/> <Layout nx="9" ny="14" x0="15mm" y0="8.5mm" dx="20mm" dy="20mm"/>
</Label-rectangle> </Label-rectangle>
@@ -143,7 +132,6 @@
<Template brand="Endisch" part="6502719x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6502719x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/27x19_e.html"/>
<Label-rectangle id="0" width="27.5mm" height="19.05mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="27.5mm" height="19.05mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="7" ny="14" x0="8.75mm" y0="15.15mm" dx="27.5mm" dy="19.05mm"/> <Layout nx="7" ny="14" x0="8.75mm" y0="15.15mm" dx="27.5mm" dy="19.05mm"/>
</Label-rectangle> </Label-rectangle>
@@ -160,7 +148,6 @@
<Template brand="Endisch" part="6503821x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6503821x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/38x212_e.html"/>
<Label-rectangle id="0" width="38mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="38mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="5" ny="13" x0="10mm" y0="10.7mm" dx="38mm" dy="21.2mm"/> <Layout nx="5" ny="13" x0="10mm" y0="10.7mm" dx="38mm" dy="21.2mm"/>
</Label-rectangle> </Label-rectangle>
@@ -177,7 +164,6 @@
<Template brand="Endisch" part="6504816x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6504816x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/485x169_e.html"/>
<Label-rectangle id="0" width="48.5mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="48.5mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="16" x0="8mm" y0="13.3mm" dx="48.5mm" dy="16.9mm"/> <Layout nx="4" ny="16" x0="8mm" y0="13.3mm" dx="48.5mm" dy="16.9mm"/>
</Label-rectangle> </Label-rectangle>
@@ -186,7 +172,6 @@
<Template brand="Endisch" part="6504825x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6504825x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/485x254_e.html"/>
<Label-rectangle id="0" width="48.5mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="48.5mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="11" x0="8mm" y0="8.8mm" dx="48.5mm" dy="25.4mm"/> <Layout nx="4" ny="11" x0="8mm" y0="8.8mm" dx="48.5mm" dy="25.4mm"/>
</Label-rectangle> </Label-rectangle>
@@ -203,7 +188,6 @@
<Template brand="Endisch" part="6505221x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6505221x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/525x212_e.html"/>
<Label-rectangle id="0" width="52.5mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="52.5mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="14" x0="0mm" y0="0mm" dx="52.5mm" dy="21.214mm"/> <Layout nx="4" ny="14" x0="0mm" y0="0mm" dx="52.5mm" dy="21.214mm"/>
</Label-rectangle> </Label-rectangle>
@@ -212,7 +196,6 @@
<Template brand="Endisch" part="6505225x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6505225x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/525x254_e.html"/>
<Label-rectangle id="0" width="52.5mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="52.5mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="11" x0="0mm" y0="8.8mm" dx="52.5mm" dy="25.4mm"/> <Layout nx="4" ny="11" x0="0mm" y0="8.8mm" dx="52.5mm" dy="25.4mm"/>
</Label-rectangle> </Label-rectangle>
@@ -221,7 +204,6 @@
<Template brand="Endisch" part="6505229x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6505229x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/525x2967_e.html"/>
<Label-rectangle id="0" width="52.5mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="52.5mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="10" x0="0mm" y0="0mm" dx="52.5mm" dy="29.7mm"/> <Layout nx="4" ny="10" x0="0mm" y0="0mm" dx="52.5mm" dy="29.7mm"/>
</Label-rectangle> </Label-rectangle>
@@ -230,7 +212,6 @@
<Template brand="Endisch" part="6405334x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6405334x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/53x34_e.html"/>
<Label-rectangle id="0" width="53mm" height="34mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="53mm" height="34mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="13mm" y0="12.5mm" dx="65.5mm" dy="34mm"/> <Layout nx="3" ny="8" x0="13mm" y0="12.5mm" dx="65.5mm" dy="34mm"/>
</Label-rectangle> </Label-rectangle>
@@ -239,7 +220,6 @@
<Template brand="Endisch" part="640638x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="640638x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/63x85_e.html"/>
<Label-rectangle id="0" width="63.5mm" height="8.5mm" round="2mm" x_waste="0.8mm" y_waste="0mm"> <Label-rectangle id="0" width="63.5mm" height="8.5mm" round="2mm" x_waste="0.8mm" y_waste="0mm">
<Layout nx="3" ny="32" x0="7.21mm" y0="12.5mm" dx="66.04mm" dy="8.5mm"/> <Layout nx="3" ny="32" x0="7.21mm" y0="12.5mm" dx="66.04mm" dy="8.5mm"/>
</Label-rectangle> </Label-rectangle>
@@ -280,7 +260,6 @@
<Template brand="Endisch" part="6506433x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6506433x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/646x338_e.html"/>
<Label-rectangle id="0" width="64.6mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="64.6mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="8.1mm" y0="13.3mm" dx="64.6mm" dy="33.8mm"/> <Layout nx="3" ny="8" x0="8.1mm" y0="13.3mm" dx="64.6mm" dy="33.8mm"/>
</Label-rectangle> </Label-rectangle>
@@ -289,7 +268,6 @@
<Template brand="Endisch" part="6406634x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6406634x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/66x34_e.html"/>
<Label-rectangle id="0" width="66mm" height="34mm" round="2mm" x_waste="0.5mm" y_waste="0mm"> <Label-rectangle id="0" width="66mm" height="34mm" round="2mm" x_waste="0.5mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="4mm" y0="12.5mm" dx="68mm" dy="34mm"/> <Layout nx="3" ny="8" x0="4mm" y0="12.5mm" dx="68mm" dy="34mm"/>
</Label-rectangle> </Label-rectangle>
@@ -298,7 +276,6 @@
<Template brand="Endisch" part="6507016x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507016x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x169_e.html"/>
<Label-rectangle id="0" width="70mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="17" x0="0mm" y0="4.85mm" dx="70mm" dy="16.9mm"/> <Layout nx="3" ny="17" x0="0mm" y0="4.85mm" dx="70mm" dy="16.9mm"/>
</Label-rectangle> </Label-rectangle>
@@ -307,7 +284,6 @@
<Template brand="Endisch" part="6507025x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507025x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x254_e.html"/>
<Label-rectangle id="0" width="70mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="11" x0="0mm" y0="8.8mm" dx="70mm" dy="25.4mm"/> <Layout nx="3" ny="11" x0="0mm" y0="8.8mm" dx="70mm" dy="25.4mm"/>
</Label-rectangle> </Label-rectangle>
@@ -316,7 +292,6 @@
<Template brand="Endisch" part="6507029x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507029x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x2967_e.html"/>
<Label-rectangle id="0" width="70mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="10" x0="0mm" y0="0mm" dx="70mm" dy="29.7mm"/> <Layout nx="3" ny="10" x0="0mm" y0="0mm" dx="70mm" dy="29.7mm"/>
</Label-rectangle> </Label-rectangle>
@@ -325,7 +300,6 @@
<Template brand="Endisch" part="6507032x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507032x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x32_e.html"/>
<Label-rectangle id="0" width="70mm" height="32mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="32mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="9" x0="0mm" y0="4.5mm" dx="70mm" dy="32mm"/> <Layout nx="3" ny="9" x0="0mm" y0="4.5mm" dx="70mm" dy="32mm"/>
</Label-rectangle> </Label-rectangle>
@@ -334,7 +308,6 @@
<Template brand="Endisch" part="6507033x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507033x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x338_e.html"/>
<Label-rectangle id="0" width="70mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="0mm" y0="13.3mm" dx="70mm" dy="33.8mm"/> <Layout nx="3" ny="8" x0="0mm" y0="13.3mm" dx="70mm" dy="33.8mm"/>
</Label-rectangle> </Label-rectangle>
@@ -343,7 +316,6 @@
<Template brand="Endisch" part="6507035x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507035x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x35_e.html"/>
<Label-rectangle id="0" width="70mm" height="35mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="35mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="0mm" y0="8.5mm" dx="70mm" dy="35mm"/> <Layout nx="3" ny="8" x0="0mm" y0="8.5mm" dx="70mm" dy="35mm"/>
</Label-rectangle> </Label-rectangle>
@@ -352,7 +324,6 @@
<Template brand="Endisch" part="6507036x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507036x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x36_e.html"/>
<Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="0mm" y0="4.5mm" dx="70mm" dy="36mm"/> <Layout nx="3" ny="8" x0="0mm" y0="4.5mm" dx="70mm" dy="36mm"/>
</Label-rectangle> </Label-rectangle>
@@ -361,7 +332,6 @@
<Template brand="Endisch" part="6507037x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507037x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x3708_e.html"/>
<Label-rectangle id="0" width="70mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="0mm" y0="0mm" dx="70mm" dy="37.125mm"/> <Layout nx="3" ny="8" x0="0mm" y0="0mm" dx="70mm" dy="37.125mm"/>
</Label-rectangle> </Label-rectangle>
@@ -370,7 +340,6 @@
<Template brand="Endisch" part="6507041x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507041x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x41_e.html"/>
<Label-rectangle id="0" width="70mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="7" x0="0mm" y0="5mm" dx="70mm" dy="41mm"/> <Layout nx="3" ny="7" x0="0mm" y0="5mm" dx="70mm" dy="41mm"/>
</Label-rectangle> </Label-rectangle>
@@ -379,7 +348,6 @@
<Template brand="Endisch" part="6507042x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507042x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x423_e.html"/>
<Label-rectangle id="0" width="70mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="7" x0="0mm" y0="0mm" dx="70mm" dy="42.428mm"/> <Layout nx="3" ny="7" x0="0mm" y0="0mm" dx="70mm" dy="42.428mm"/>
</Label-rectangle> </Label-rectangle>
@@ -388,7 +356,6 @@
<Template brand="Endisch" part="6507050x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507050x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x508_e.html"/>
<Label-rectangle id="0" width="70mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="5" x0="0mm" y0="21.5mm" dx="70mm" dy="50.8mm"/> <Layout nx="3" ny="5" x0="0mm" y0="21.5mm" dx="70mm" dy="50.8mm"/>
</Label-rectangle> </Label-rectangle>
@@ -397,7 +364,6 @@
<Template brand="Endisch" part="6507067x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6507067x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/70x677_e.html"/>
<Label-rectangle id="0" width="70mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="4" x0="0mm" y0="13.1mm" dx="70mm" dy="67.7mm"/> <Layout nx="3" ny="4" x0="0mm" y0="13.1mm" dx="70mm" dy="67.7mm"/>
</Label-rectangle> </Label-rectangle>
@@ -406,7 +372,6 @@
<Template brand="Endisch" part="6408232x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6408232x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/82x32_e.html"/>
<Label-rectangle id="0" width="82mm" height="32mm" round="2mm" x_waste="2mm" y_waste="0mm"> <Label-rectangle id="0" width="82mm" height="32mm" round="2mm" x_waste="2mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="16mm" y0="20.5mm" dx="96mm" dy="32mm"/> <Layout nx="2" ny="8" x0="16mm" y0="20.5mm" dx="96mm" dy="32mm"/>
</Label-rectangle> </Label-rectangle>
@@ -415,7 +380,6 @@
<Template brand="Endisch" part="6408252x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6408252x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/82x52_e.html"/>
<Label-rectangle id="0" width="82mm" height="52mm" round="2mm" x_waste="2mm" y_waste="0mm"> <Label-rectangle id="0" width="82mm" height="52mm" round="2mm" x_waste="2mm" y_waste="0mm">
<Layout nx="2" ny="5" x0="16mm" y0="18.5mm" dx="96mm" dy="52mm"/> <Layout nx="2" ny="5" x0="16mm" y0="18.5mm" dx="96mm" dy="52mm"/>
</Label-rectangle> </Label-rectangle>
@@ -440,7 +404,6 @@
<Template brand="Endisch" part="6409616x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6409616x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/96x169_e.html"/>
<Label-rectangle id="0" width="96mm" height="16.9mm" round="2mm" x_waste="0.7mm" y_waste="0mm"> <Label-rectangle id="0" width="96mm" height="16.9mm" round="2mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="16" x0="7.75mm" y0="13.3mm" dx="98.5mm" dy="16.9mm"/> <Layout nx="2" ny="16" x0="7.75mm" y0="13.3mm" dx="98.5mm" dy="16.9mm"/>
</Label-rectangle> </Label-rectangle>
@@ -457,7 +420,6 @@
<Template brand="Endisch" part="6509742x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6509742x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/97x423_e.html"/>
<Label-rectangle id="0" width="97mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="97mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="6" x0="8mm" y0="21.6mm" dx="97mm" dy="42.3mm"/> <Layout nx="2" ny="6" x0="8mm" y0="21.6mm" dx="97mm" dy="42.3mm"/>
</Label-rectangle> </Label-rectangle>
@@ -466,7 +428,6 @@
<Template brand="Endisch" part="6509767x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6509767x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/97x677_e.html"/>
<Label-rectangle id="0" width="97mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="97mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="8mm" y0="13.1mm" dx="97mm" dy="67.7mm"/> <Layout nx="2" ny="4" x0="8mm" y0="13.1mm" dx="97mm" dy="67.7mm"/>
</Label-rectangle> </Label-rectangle>
@@ -475,7 +436,6 @@
<Template brand="Endisch" part="6409852x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6409852x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/98x52_e.html"/>
<Label-rectangle id="0" width="98mm" height="52mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="98mm" height="52mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="2" ny="5" x0="5mm" y0="18.5mm" dx="102mm" dy="52mm"/> <Layout nx="2" ny="5" x0="5mm" y0="18.5mm" dx="102mm" dy="52mm"/>
</Label-rectangle> </Label-rectangle>
@@ -532,7 +492,6 @@
<Template brand="Endisch" part="6510150x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510150x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/1016x508_e.html"/>
<Label-rectangle id="0" width="101.6mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="101.6mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="5" x0="3.4mm" y0="21.5mm" dx="101.6mm" dy="50.8mm"/> <Layout nx="2" ny="5" x0="3.4mm" y0="21.5mm" dx="101.6mm" dy="50.8mm"/>
</Label-rectangle> </Label-rectangle>
@@ -541,7 +500,6 @@
<Template brand="Endisch" part="6510533x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510533x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x338_e.html"/>
<Label-rectangle id="0" width="105mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="0mm" y0="13.3mm" dx="105mm" dy="33.8mm"/> <Layout nx="2" ny="8" x0="0mm" y0="13.3mm" dx="105mm" dy="33.8mm"/>
</Label-rectangle> </Label-rectangle>
@@ -550,7 +508,6 @@
<Template brand="Endisch" part="6510537x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510537x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x3708_e.html"/>
<Label-rectangle id="0" width="105mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="0mm" y0="0mm" dx="105mm" dy="37.125mm"/> <Layout nx="2" ny="8" x0="0mm" y0="0mm" dx="105mm" dy="37.125mm"/>
</Label-rectangle> </Label-rectangle>
@@ -559,7 +516,6 @@
<Template brand="Endisch" part="6510541x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510541x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x41_e.html"/>
<Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/> <Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/>
</Label-rectangle> </Label-rectangle>
@@ -568,7 +524,6 @@
<Template brand="Endisch" part="6510542x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510542x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x423_e.html"/>
<Label-rectangle id="0" width="105mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="7" x0="0mm" y0="0mm" dx="105mm" dy="42.428mm"/> <Layout nx="2" ny="7" x0="0mm" y0="0mm" dx="105mm" dy="42.428mm"/>
</Label-rectangle> </Label-rectangle>
@@ -577,7 +532,6 @@
<Template brand="Endisch" part="6510548x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510548x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x48_e.html"/>
<Label-rectangle id="0" width="105mm" height="48mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="48mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="6" x0="0mm" y0="4.5mm" dx="105mm" dy="48mm"/> <Layout nx="2" ny="6" x0="0mm" y0="4.5mm" dx="105mm" dy="48mm"/>
</Label-rectangle> </Label-rectangle>
@@ -586,7 +540,6 @@
<Template brand="Endisch" part="6510557x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510557x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x57_e.html"/>
<Label-rectangle id="0" width="105mm" height="57mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="57mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="5" x0="0mm" y0="6mm" dx="105mm" dy="57mm"/> <Layout nx="2" ny="5" x0="0mm" y0="6mm" dx="105mm" dy="57mm"/>
</Label-rectangle> </Label-rectangle>
@@ -595,7 +548,6 @@
<Template brand="Endisch" part="6510570x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510570x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x70_e.html"/>
<Label-rectangle id="0" width="105mm" height="70mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="70mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="0mm" y0="8.5mm" dx="105mm" dy="70mm"/> <Layout nx="2" ny="4" x0="0mm" y0="8.5mm" dx="105mm" dy="70mm"/>
</Label-rectangle> </Label-rectangle>
@@ -604,7 +556,6 @@
<Template brand="Endisch" part="6510572x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510572x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x72_e.html"/>
<Label-rectangle id="0" width="105mm" height="72mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="72mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="0mm" y0="9mm" dx="105mm" dy="72mm"/> <Layout nx="2" ny="4" x0="0mm" y0="9mm" dx="105mm" dy="72mm"/>
</Label-rectangle> </Label-rectangle>
@@ -613,7 +564,6 @@
<Template brand="Endisch" part="6510574x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510574x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x74_e.html"/>
<Label-rectangle id="0" width="105mm" height="74.25mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="74.25mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="0mm" y0="0mm" dx="105mm" dy="74.25mm"/> <Layout nx="2" ny="4" x0="0mm" y0="0mm" dx="105mm" dy="74.25mm"/>
</Label-rectangle> </Label-rectangle>
@@ -622,7 +572,6 @@
<Template brand="Endisch" part="6510514x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510514x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x144_e.html"/>
<Label-rectangle id="0" width="105mm" height="144mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="144mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="2" x0="0mm" y0="9mm" dx="105mm" dy="144mm"/> <Layout nx="2" ny="2" x0="0mm" y0="9mm" dx="105mm" dy="144mm"/>
</Label-rectangle> </Label-rectangle>
@@ -631,7 +580,6 @@
<Template brand="Endisch" part="6510518x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6510518x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/105x148_e.html"/>
<Label-rectangle id="0" width="105mm" height="148.5mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="148.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148.5mm"/> <Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148.5mm"/>
</Label-rectangle> </Label-rectangle>
@@ -640,7 +588,6 @@
<Template brand="Endisch" part="6414498x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6414498x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/144x98_e.html"/>
<Label-rectangle id="0" width="98mm" height="144mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="98mm" height="144mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="2" ny="2" x0="5mm" y0="4.5mm" dx="102mm" dy="144mm"/> <Layout nx="2" ny="2" x0="5mm" y0="4.5mm" dx="102mm" dy="144mm"/>
</Label-rectangle> </Label-rectangle>
@@ -649,7 +596,6 @@
<Template brand="Endisch" part="6414720x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6414720x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/147x20_e.html"/>
<Label-rectangle id="0" width="147.3mm" height="20mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="147.3mm" height="20mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="1" ny="13" x0="31.35mm" y0="18.5mm" dx="147.3mm" dy="20mm"/> <Layout nx="1" ny="13" x0="31.35mm" y0="18.5mm" dx="147.3mm" dy="20mm"/>
</Label-rectangle> </Label-rectangle>
@@ -658,7 +604,6 @@
<Template brand="Endisch" part="6519038x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6519038x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/190x38_e.html"/>
<Label-rectangle id="0" width="192mm" height="38mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="192mm" height="38mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="1" ny="7" x0="9mm" y0="15.5mm" dx="192mm" dy="38mm"/> <Layout nx="1" ny="7" x0="9mm" y0="15.5mm" dx="192mm" dy="38mm"/>
</Label-rectangle> </Label-rectangle>
@@ -667,7 +612,6 @@
<Template brand="Endisch" part="6519061x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6519061x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/190x61_e.html"/>
<Label-rectangle id="0" width="192mm" height="61mm" round="2mm" x_waste="1mm" y_waste="0mm"> <Label-rectangle id="0" width="192mm" height="61mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="1" ny="4" x0="9mm" y0="26.5mm" dx="192mm" dy="61mm"/> <Layout nx="1" ny="4" x0="9mm" y0="26.5mm" dx="192mm" dy="61mm"/>
</Label-rectangle> </Label-rectangle>
@@ -676,7 +620,6 @@
<Template brand="Endisch" part="6520029x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6520029x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/200x297_e.html"/>
<Label-rectangle id="0" width="200mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="200mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="10mm" y0="0mm" dx="200mm" dy="297mm"/> <Layout nx="1" ny="1" x0="10mm" y0="0mm" dx="200mm" dy="297mm"/>
</Label-rectangle> </Label-rectangle>
@@ -701,7 +644,6 @@
<Template brand="Endisch" part="6521018x" size="A4" _description="Rectangular labels"> <Template brand="Endisch" part="6521018x" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/210x148_e.html"/>
<Label-rectangle id="0" width="210mm" height="148.5mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="148.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="2" x0="0mm" y0="0mm" dx="210mm" dy="148.5mm"/> <Layout nx="1" ny="2" x0="0mm" y0="0mm" dx="210mm" dy="148.5mm"/>
</Label-rectangle> </Label-rectangle>
@@ -710,14 +652,11 @@
<Template brand="Endisch" part="6521029x" size="A4" _description="Full-page labels"> <Template brand="Endisch" part="6521029x" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.endihaft.de/en/endisch_labels/laser/210x297_e.html"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<Template brand="Endisch" part="65420297" size="A3" _description="Full-page labels"> <Template brand="Endisch" part="65420297" size="A3" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
@@ -734,8 +673,6 @@
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<Template brand="Endisch" part="B104147A5" size="A5" _description="Rectangular labels"> <Template brand="Endisch" part="B104147A5" size="A5" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
-29
View File
@@ -19,7 +19,6 @@
<Template brand="Geha" part="P10" size="A4" _description="Flyer paper"> <Template brand="Geha" part="P10" size="A4" _description="Flyer paper">
<Meta category="card"/> <Meta category="card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=90594"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Markup-line x1="0mm" y1="99mm" x2="210mm" y2="99mm"/> <Markup-line x1="0mm" y1="99mm" x2="210mm" y2="99mm"/>
@@ -34,7 +33,6 @@
<Template brand="Geha" part="P68" size="A4" _description="Business cards"> <Template brand="Geha" part="P68" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.geha.de/index.php?id=1057&amp;pid=91058"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="9mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="9mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="2" ny="4" x0="15mm" y0="13mm" dx="95mm" dy="72mm"/> <Layout nx="2" ny="4" x0="15mm" y0="13mm" dx="95mm" dy="72mm"/>
@@ -49,7 +47,6 @@
<Template brand="Geha" part="P70" size="A4" _description="Business cards"> <Template brand="Geha" part="P70" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.geha.de/index.php?id=1057&amp;pid=90679"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="13.5mm" dx="95mm" dy="54mm"/> <Layout nx="2" ny="5" x0="15mm" y0="13.5mm" dx="95mm" dy="54mm"/>
@@ -66,7 +63,6 @@
<Template brand="Geha" part="P76" size="A4" _description="Greeting cards"> <Template brand="Geha" part="P76" size="A4" _description="Greeting cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.geha.de/index.php?id=1057&amp;pid=90815"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Markup-line x1="0mm" y1="148.5mm" x2="210mm" y2="148.5mm"/> <Markup-line x1="0mm" y1="148.5mm" x2="210mm" y2="148.5mm"/>
@@ -82,7 +78,6 @@
<Template brand="Geha" part="P78" size="A4" _description="Greeting cards"> <Template brand="Geha" part="P78" size="A4" _description="Greeting cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.geha.de/index.php?id=1057&amp;pid=90835"/>
<Label-rectangle id="0" width="165mm" height="121mm" round="0mm" x_waste="23mm" y_waste="2.5mm"> <Label-rectangle id="0" width="165mm" height="121mm" round="0mm" x_waste="23mm" y_waste="2.5mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Markup-line x1="82.5mm" y1="0mm" x2="82.5mm" y2="121mm"/> <Markup-line x1="82.5mm" y1="0mm" x2="82.5mm" y2="121mm"/>
@@ -97,7 +92,6 @@
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="Geha" part="P80" size="A4" _description="Arch file inserts"> <Template brand="Geha" part="P80" size="A4" _description="Arch file inserts">
<Meta category="card"/> <Meta category="card"/>
<Meta product_url="http://www.geha.de/index.php?id=837&amp;pid=90891"/>
<Label-rectangle id="0" width="188mm" height="48mm" round="0mm" x_waste="11mm" y_waste="0mm"> <Label-rectangle id="0" width="188mm" height="48mm" round="0mm" x_waste="11mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="5" x0="11mm" y0="28.5mm" dx="210mm" dy="48mm"/> <Layout nx="1" ny="5" x0="11mm" y0="28.5mm" dx="210mm" dy="48mm"/>
@@ -109,7 +103,6 @@
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="Geha" part="P81" size="A4" _description="Arch file inserts"> <Template brand="Geha" part="P81" size="A4" _description="Arch file inserts">
<Meta category="card"/> <Meta category="card"/>
<Meta product_url="http://www.geha.de/index.php?id=837&amp;pid=90914"/>
<Label-rectangle id="0" width="188mm" height="26mm" round="0mm" x_waste="11mm" y_waste="0mm"> <Label-rectangle id="0" width="188mm" height="26mm" round="0mm" x_waste="11mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="1" ny="9" x0="11mm" y0="31.5mm" dx="210mm" dy="26mm"/> <Layout nx="1" ny="9" x0="11mm" y0="31.5mm" dx="210mm" dy="26mm"/>
@@ -122,7 +115,6 @@
<Template brand="Geha" part="Z20-1" size="A4" _description="CD/DVD labels"> <Template brand="Geha" part="Z20-1" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30200"/>
<Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="10mm"> <Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="10mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="46.5mm" y0="21.5mm" dx="137mm" dy="137mm"/> <Layout nx="1" ny="1" x0="46.5mm" y0="21.5mm" dx="137mm" dy="137mm"/>
@@ -135,7 +127,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30200"/>
<Label-rectangle id="0" width="121.5mm" height="117.5mm" round="0mm" x_waste="15mm" y_waste="0mm"> <Label-rectangle id="0" width="121.5mm" height="117.5mm" round="0mm" x_waste="15mm" y_waste="0mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="44.25mm" y0="164mm" dx="151.5mm" dy="117.5mm"/> <Layout nx="1" ny="1" x0="44.25mm" y0="164mm" dx="151.5mm" dy="117.5mm"/>
@@ -150,7 +141,6 @@
<Template brand="Geha" part="Z22" size="A4" _description="CD/DVD labels"> <Template brand="Geha" part="Z22" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30101"/>
<Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="3.175mm"> <Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="3.175mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="21.5mm" dx="123.35mm" dy="137mm"/> <Layout nx="1" ny="2" x0="46.5mm" y0="21.5mm" dx="123.35mm" dy="137mm"/>
@@ -165,7 +155,6 @@
<Template brand="Geha" part="Z24" size="A4" _description="DVD insert"> <Template brand="Geha" part="Z24" size="A4" _description="DVD insert">
<Meta category="card"/> <Meta category="card"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30248"/>
<Label-rectangle id="0" width="183mm" height="270mm" round="0mm" x_waste="13.5mm" y_waste="13.5mm"> <Label-rectangle id="0" width="183mm" height="270mm" round="0mm" x_waste="13.5mm" y_waste="13.5mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="13.5mm" y0="13.5mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="13.5mm" y0="13.5mm" dx="210mm" dy="297mm"/>
@@ -180,7 +169,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30262"/>
<Label-rectangle id="0" width="147.32mm" height="20mm" round="2.8mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="147.32mm" height="20mm" round="2.8mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="1" ny="13" x0="31.38mm" y0="18.4mm" dx="147.32mm" dy="20mm"/> <Layout nx="1" ny="13" x0="31.38mm" y0="18.4mm" dx="147.32mm" dy="20mm"/>
@@ -195,7 +183,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30262"/>
<Label-rectangle id="0" width="78.74mm" height="46.6mm" round="2mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="78.74mm" height="46.6mm" round="2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="2" ny="6" x0="25mm" y0="8.7mm" dx="81.38mm" dy="46.6mm"/> <Layout nx="2" ny="6" x0="25mm" y0="8.7mm" dx="81.38mm" dy="46.6mm"/>
@@ -209,7 +196,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30569"/>
<Label-rectangle id="0" width="88.9mm" height="127mm" round="0mm" x_waste="2.5mm" y_waste="2mm"> <Label-rectangle id="0" width="88.9mm" height="127mm" round="0mm" x_waste="2.5mm" y_waste="2mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Layout nx="2" ny="2" x0="13.6mm" y0="19.3mm" dx="94mm" dy="131.23mm"/> <Layout nx="2" ny="2" x0="13.6mm" y0="19.3mm" dx="94mm" dy="131.23mm"/>
@@ -226,7 +212,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30545"/>
<Label-rectangle id="0" width="150mm" height="100mm" round="0mm" x_waste="30mm" y_waste="24mm"> <Label-rectangle id="0" width="150mm" height="100mm" round="0mm" x_waste="30mm" y_waste="24mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="30mm" y0="24.2mm" dx="210mm" dy="148mm"/> <Layout nx="1" ny="2" x0="30mm" y0="24.2mm" dx="210mm" dy="148mm"/>
@@ -243,7 +228,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30521"/>
<Label-rectangle id="0" width="178mm" height="127mm" round="0mm" x_waste="16mm" y_waste="3mm"> <Label-rectangle id="0" width="178mm" height="127mm" round="0mm" x_waste="16mm" y_waste="3mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="16mm" y0="18.4mm" dx="210mm" dy="145.4mm"/> <Layout nx="1" ny="2" x0="16mm" y0="18.4mm" dx="210mm" dy="145.4mm"/>
@@ -260,7 +244,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30538"/>
<Label-rectangle id="0" width="35mm" height="45mm" round="0mm" x_waste="5mm" y_waste="4mm"> <Label-rectangle id="0" width="35mm" height="45mm" round="0mm" x_waste="5mm" y_waste="4mm">
<Markup-margin size="0mm"/> <Markup-margin size="0mm"/>
<Layout nx="4" ny="5" x0="20mm" y0="20mm" dx="45mm" dy="53mm"/> <Layout nx="4" ny="5" x0="20mm" y0="20mm" dx="45mm" dy="53mm"/>
@@ -275,7 +258,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30705"/>
<Label-rectangle id="0" width="199.6mm" height="289.05mm" round="2mm" x_waste="5.2mm" y_waste="4.7mm"> <Label-rectangle id="0" width="199.6mm" height="289.05mm" round="2mm" x_waste="5.2mm" y_waste="4.7mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="5.2mm" y0="4.7mm" dx="210mm" dy="298.45mm"/> <Layout nx="1" ny="1" x0="5.2mm" y0="4.7mm" dx="210mm" dy="298.45mm"/>
@@ -289,7 +271,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30729"/>
<Label-rectangle id="0" width="99.1mm" height="139mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="99.1mm" height="139mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="4.7mm" y0="10mm" dx="101.64mm" dy="139mm"/> <Layout nx="2" ny="2" x0="4.7mm" y0="10mm" dx="101.64mm" dy="139mm"/>
@@ -303,7 +284,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30743"/>
<Label-rectangle id="0" width="99.06mm" height="67.7mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="99.06mm" height="67.7mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="2" ny="4" x0="4.7mm" y0="13.8mm" dx="101.6mm" dy="67.73mm"/> <Layout nx="2" ny="4" x0="4.7mm" y0="13.8mm" dx="101.6mm" dy="67.73mm"/>
@@ -317,7 +297,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30767"/>
<Label-rectangle id="0" width="99.1mm" height="38.1mm" round="0.2mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="99.1mm" height="38.1mm" round="0.2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="3mm" y0="15.9mm" dx="101.6mm" dy="38.1mm"/> <Layout nx="2" ny="7" x0="3mm" y0="15.9mm" dx="101.6mm" dy="38.1mm"/>
@@ -331,21 +310,18 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30781"/>
<Label-rectangle id="0" width="63.5mm" height="38.1mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="63.5mm" height="38.1mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="3" ny="7" x0="7.2mm" y0="15.9mm" dx="66.04mm" dy="38.1mm"/> <Layout nx="3" ny="7" x0="7.2mm" y0="15.9mm" dx="66.04mm" dy="38.1mm"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- Geha Z80. Arch file labels. --> <!-- Geha Z80. Arch file labels. -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="Geha" part="Z80" size="A4" _description="Arch file labels"> <Template brand="Geha" part="Z80" size="A4" _description="Arch file labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30002"/>
<Label-rectangle id="0" width="192mm" height="61mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="192mm" height="61mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Markup-line x1="172mm" y1="0mm" x2="172mm" y2="61mm"/> <Markup-line x1="172mm" y1="0mm" x2="172mm" y2="61mm"/>
@@ -355,14 +331,12 @@
<Template brand="Geha" part="Z88" equiv="Z80"/> <Template brand="Geha" part="Z88" equiv="Z80"/>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- Geha Z81. Arch file labels. --> <!-- Geha Z81. Arch file labels. -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="Geha" part="Z81" size="A4" _description="Arch file labels"> <Template brand="Geha" part="Z81" size="A4" _description="Arch file labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30026"/>
<Label-rectangle id="0" width="192mm" height="38mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="192mm" height="38mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Markup-line x1="172mm" y1="0mm" x2="172mm" y2="38mm"/> <Markup-line x1="172mm" y1="0mm" x2="172mm" y2="38mm"/>
@@ -378,7 +352,6 @@
<Template brand="Geha" part="Z90" size="A4" _description="Multipurpose labels"> <Template brand="Geha" part="Z90" size="A4" _description="Multipurpose labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30804"/>
<Label-rectangle id="0" width="63.5mm" height="29.63mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="63.5mm" height="29.63mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="3" ny="9" x0="7.2mm" y0="15.1mm" dx="66.04mm" dy="29.63mm"/> <Layout nx="3" ny="9" x0="7.2mm" y0="15.1mm" dx="66.04mm" dy="29.63mm"/>
@@ -391,7 +364,6 @@
<Template brand="Geha" part="Z91" size="A4" _description="Multipurpose labels"> <Template brand="Geha" part="Z91" size="A4" _description="Multipurpose labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30828"/>
<Label-rectangle id="0" width="45.72mm" height="21.16mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="45.72mm" height="21.16mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="4" ny="12" x0="9.8mm" y0="21.4mm" dx="48.26mm" dy="21.2mm"/> <Layout nx="4" ny="12" x0="9.8mm" y0="21.4mm" dx="48.26mm" dy="21.2mm"/>
@@ -404,7 +376,6 @@
<Template brand="Geha" part="Z92" size="A4" _description="Multipurpose labels"> <Template brand="Geha" part="Z92" size="A4" _description="Multipurpose labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.geha.de/index.php?id=1047&amp;pid=30842"/>
<Label-rectangle id="0" width="25.4mm" height="10mm" round="2mm" x_waste="1.2mm" y_waste="0mm"> <Label-rectangle id="0" width="25.4mm" height="10mm" round="2mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="1mm"/> <Markup-margin size="1mm"/>
<Layout nx="7" ny="27" x0="8.5mm" y0="13.4mm" dx="27.94mm" dy="10mm"/> <Layout nx="7" ny="27" x0="8.5mm" y0="13.4mm" dx="27.94mm" dy="10mm"/>
File diff suppressed because it is too large Load Diff
-1
View File
@@ -3,7 +3,6 @@
<Template brand="Mayspies" part="090352" size="A4" _description="CD/DVD labels"> <Template brand="Mayspies" part="090352" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.mayspies.com/index.php?menu_ID=43"/>
<Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="3.2mm"> <Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="3.2mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="21.43mm" dx="123.4mm" dy="137mm"/> <Layout nx="1" ny="2" x0="46.5mm" y0="21.43mm" dx="123.4mm" dy="137mm"/>
-1
View File
@@ -13,7 +13,6 @@
<Template brand="Micro Application" part="5057" size="A4" _description="Rectangular labels"> <Template brand="Micro Application" part="5057" size="A4" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.microapp.com/papier_etiquettes_standard_5057.html"/>
<Label-rectangle id="0" width="60.5mm" height="29.6mm" round="0mm" x_waste="1mm" y_waste="1mm"> <Label-rectangle id="0" width="60.5mm" height="29.6mm" round="0mm" x_waste="1mm" y_waste="1mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="3" ny="8" x0="12mm" y0="23mm" dx="62.5mm" dy="31.6mm"/> <Layout nx="3" ny="8" x0="12mm" y0="23mm" dx="62.5mm" dy="31.6mm"/>
-1
View File
@@ -625,7 +625,6 @@
<Template brand="Sigel" part="DE 160" size="A4" _description="Bottle/jar labels"> <Template brand="Sigel" part="DE 160" size="A4" _description="Bottle/jar labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sigel.de/en_gb/Workflow/Labels/118/1406-Labels+for+bottles%2C+to+design+and+customize"/>
<Label-rectangle id="0" width="80mm" height="120mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="80mm" height="120mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="15mm" y0="19.5mm" dx="100mm" dy="138mm"/> <Layout nx="2" ny="2" x0="15mm" y0="19.5mm" dx="100mm" dy="138mm"/>
-1
View File
@@ -18,7 +18,6 @@
<Template brand="Merax" part="CD labels" size="US-Letter" _description="CD/DVD labels"> <Template brand="Merax" part="CD labels" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.merax.com/products/Labels/cddvd.html"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5"> <Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/> <Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="33.75" y0="45" dx="0" dy="0"/> <Layout nx="1" ny="1" x0="33.75" y0="45" dx="0" dy="0"/>
-1
View File
@@ -230,7 +230,6 @@
<Template brand="Southworth" part="BC554" size="US-Letter" _description="Business cards"> <Template brand="Southworth" part="BC554" size="US-Letter" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://shop.southworth.com/groups.php?cat=1&amp;group=6"/>
<Label-rectangle id="0" width="252" height="144" round="0"> <Label-rectangle id="0" width="252" height="144" round="0">
<Markup-margin size="5"/> <Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="36" y0="36" dx="288" dy="144"/> <Layout nx="2" ny="5" x0="36" y0="36" dx="288" dy="144"/>
File diff suppressed because it is too large Load Diff
-49
View File
@@ -12,7 +12,6 @@
<Template brand="PEARL" part="PE-8004" size="A4" _description="Address labels"> <Template brand="PEARL" part="PE-8004" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8004-2204.shtml"/>
<Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="4.8mm" dx="70mm" dy="36mm"/> <Layout nx="3" ny="8" x0="0mm" y0="4.8mm" dx="70mm" dy="36mm"/>
@@ -27,7 +26,6 @@
<Template brand="PEARL" part="VM-6085" size="A4" _description="Round labels"> <Template brand="PEARL" part="VM-6085" size="A4" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.pearl.de/a-VM6085-2204.shtml"/>
<Label-round id="0" radius="20mm" waste="0mm"> <Label-round id="0" radius="20mm" waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/> <Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/>
@@ -42,7 +40,6 @@
<Template brand="PEARL" part="PE-8008" size="A4" _description="Address labels"> <Template brand="PEARL" part="PE-8008" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8008-2204.shtml"/>
<Label-rectangle id="0" width="48.4mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="48.4mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="4" ny="10" x0="8mm" y0="21.5mm" dx="48.4mm" dy="25.4mm"/> <Layout nx="4" ny="10" x0="8mm" y0="21.5mm" dx="48.4mm" dy="25.4mm"/>
@@ -57,7 +54,6 @@
<Template brand="PEARL" part="PE-8007" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="PE-8007" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8007-2204.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -72,7 +68,6 @@
<Template brand="PEARL" part="PE-8350" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="PE-8350" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8350-2010.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -87,7 +82,6 @@
<Template brand="PEARL" part="PE-8351" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="PE-8351" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8351-2200.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -103,8 +97,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.pearl.de/a-VM5040-2002.shtml"/>
<Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="22.5mm" dx="55mm" dy="65mm"/> <Layout nx="3" ny="4" x0="27mm" y0="22.5mm" dx="55mm" dy="65mm"/>
@@ -119,7 +111,6 @@
<Template brand="PEARL" part="VM-5081" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="VM-5081" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM5081-2200.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -134,7 +125,6 @@
<Template brand="PEARL" part="VM-5217" size="A4" _description="Bottle/jar labels"> <Template brand="PEARL" part="VM-5217" size="A4" _description="Bottle/jar labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM5217-2200.shtml"/>
<Label-rectangle id="0" width="100mm" height="130mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="100mm" height="130mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="4.5mm" y0="14mm" dx="107mm" dy="130mm"/> <Layout nx="2" ny="2" x0="4.5mm" y0="14mm" dx="107mm" dy="130mm"/>
@@ -149,7 +139,6 @@
<Template brand="PEARL" part="VM-5220" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="VM-5220" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM5220-2200.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -164,7 +153,6 @@
<Template brand="PEARL" part="VM-5221" size="A4" _description="Floppy disk labels"> <Template brand="PEARL" part="VM-5221" size="A4" _description="Floppy disk labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM5221-2204.shtml"/>
<Label-rectangle id="0" width="70mm" height="70mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="70mm" height="70mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="0mm" y0="8.5mm" dx="70mm" dy="70mm"/> <Layout nx="3" ny="4" x0="0mm" y0="8.5mm" dx="70mm" dy="70mm"/>
@@ -179,7 +167,6 @@
<Template brand="PEARL" part="VM-6083" size="A4" _description="Address labels"> <Template brand="PEARL" part="VM-6083" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6083-2204.shtml"/>
<Label-rectangle id="0" width="25.4mm" height="16.9mm" round="1.5mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="25.4mm" height="16.9mm" round="1.5mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="7" ny="16" x0="9mm" y0="13mm" dx="27.9mm" dy="16.9mm"/> <Layout nx="7" ny="16" x0="9mm" y0="13mm" dx="27.9mm" dy="16.9mm"/>
@@ -194,7 +181,6 @@
<Template brand="PEARL" part="VM-6096" size="A6" _description="Full-page labels"> <Template brand="PEARL" part="VM-6096" size="A6" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6096-2204.shtml"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
@@ -209,7 +195,6 @@
<Template brand="PEARL" part="VM-6097" size="A5" _description="Full-page labels"> <Template brand="PEARL" part="VM-6097" size="A5" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6097-2204.shtml"/>
<Label-rectangle id="0" width="148mm" height="210mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="148mm" height="210mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="148mm" dy="210mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="148mm" dy="210mm"/>
@@ -225,7 +210,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.pearl.de/a-VM6102-2202.shtml"/>
<Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/> <Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/>
@@ -241,7 +225,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.pearl.de/a-VM6206-2202.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
@@ -256,7 +239,6 @@
<Template brand="PEARL" part="VM-6232" size="A4" _description="Address labels"> <Template brand="PEARL" part="VM-6232" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6232-2201.shtml"/>
<Label-rectangle id="0" width="96.5mm" height="42.1mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="96.5mm" height="42.1mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="2" ny="6" x0="8.5mm" y0="21mm" dx="96.5mm" dy="42.1mm"/> <Layout nx="2" ny="6" x0="8.5mm" y0="21mm" dx="96.5mm" dy="42.1mm"/>
@@ -271,7 +253,6 @@
<Template brand="PEARL" part="VM-6233" size="A4" _description="Address labels"> <Template brand="PEARL" part="VM-6233" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6233-2204.shtml"/>
<Label-rectangle id="0" width="105mm" height="74mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="74mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="0mm" y0="0.5mm" dx="105mm" dy="74mm"/> <Layout nx="2" ny="4" x0="0mm" y0="0.5mm" dx="105mm" dy="74mm"/>
@@ -286,7 +267,6 @@
<Template brand="PEARL" part="VM-6234" size="A4" _description="Address labels"> <Template brand="PEARL" part="VM-6234" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6234-2204.shtml"/>
<Label-rectangle id="0" width="99.1mm" height="57mm" round="2.5mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="99.1mm" height="57mm" round="2.5mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="5mm" y0="6mm" dx="102.1mm" dy="57mm"/> <Layout nx="2" ny="5" x0="5mm" y0="6mm" dx="102.1mm" dy="57mm"/>
@@ -301,7 +281,6 @@
<Template brand="PEARL" part="VM-6252" size="A4" _description="Full-page labels"> <Template brand="PEARL" part="VM-6252" size="A4" _description="Full-page labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6252-2202.shtml"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="0mm" dy="297mm"/> <Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="0mm" dy="297mm"/>
@@ -316,7 +295,6 @@
<Template brand="PEARL" part="VM-6398" size="A4" _description="SD card labels"> <Template brand="PEARL" part="VM-6398" size="A4" _description="SD card labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6398-2204.shtml"/>
<Label-rectangle id="0" width="19.6mm" height="25mm" round="1.2mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="19.6mm" height="25mm" round="1.2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="1.5mm"/> <Markup-margin size="1.5mm"/>
<Layout nx="9" ny="10" x0="4.5mm" y0="10mm" dx="22.6mm" dy="28mm"/> <Layout nx="9" ny="10" x0="4.5mm" y0="10mm" dx="22.6mm" dy="28mm"/>
@@ -329,7 +307,6 @@
<Template brand="PEARL" part="VM-8005" size="A4" _description="Address labels"> <Template brand="PEARL" part="VM-8005" size="A4" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-PE8005-2204.shtml"/>
<Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/> <Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/>
@@ -345,7 +322,6 @@
<Template brand="PEARL" part="VM-6630" size="A4" _description="DVD insert"> <Template brand="PEARL" part="VM-6630" size="A4" _description="DVD insert">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6630-2211.shtml"/>
<Label-rectangle id="0" width="182mm" height="276mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="182mm" height="276mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-rect x1="2mm" y1="2mm" w="178mm" h="128mm"/> <Markup-rect x1="2mm" y1="2mm" w="178mm" h="128mm"/>
<Markup-rect x1="2mm" y1="146mm" w="178mm" h="128mm"/> <Markup-rect x1="2mm" y1="146mm" w="178mm" h="128mm"/>
@@ -362,7 +338,6 @@
<Template brand="PEARL" part="VM-5513-1" size="A4" _description="CD/DVD insert (front)"> <Template brand="PEARL" part="VM-5513-1" size="A4" _description="CD/DVD insert (front)">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM5513-2214.shtml"/>
<Label-rectangle id="0" width="120mm" height="120mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="120mm" height="120mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="61mm" y0="24mm" dx="130mm" dy="130mm"/> <Layout nx="1" ny="1" x0="61mm" y0="24mm" dx="130mm" dy="130mm"/>
@@ -376,7 +351,6 @@
<Template brand="PEARL" part="VM-5513-2" size="A4" _description="CD/DVD insert (back)"> <Template brand="PEARL" part="VM-5513-2" size="A4" _description="CD/DVD insert (back)">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM5513-2214.shtml"/>
<Label-rectangle id="0" width="150mm" height="117.5mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="150mm" height="117.5mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-rect x1="8mm" y1="2mm" w="134mm" h="113.5mm"/> <Markup-rect x1="8mm" y1="2mm" w="134mm" h="113.5mm"/>
<Markup-line x1="6mm" y1="0mm" x2="6mm" y2="117.5mm"/> <Markup-line x1="6mm" y1="0mm" x2="6mm" y2="117.5mm"/>
@@ -395,7 +369,6 @@
<Template brand="Sattleford" part="VM-5019" size="A4" _description="Business cards"> <Template brand="Sattleford" part="VM-5019" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.pearl.de/a-VM5019-2014.shtml"/>
<Label-rectangle id="0" width="85mm" height="54.2mm" round="0mm" x_waste="5mm" y_waste="0mm"> <Label-rectangle id="0" width="85mm" height="54.2mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="13.5mm" y0="13.5mm" dx="95mm" dy="54.2mm"/> <Layout nx="2" ny="5" x0="13.5mm" y0="13.5mm" dx="95mm" dy="54.2mm"/>
@@ -411,7 +384,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.pearl.de/a-VM5040-2002.shtml"/>
<Label-rectangle id="0" width="45mm" height="54.5mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="45mm" height="54.5mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="28mm" y0="24.5mm" dx="55mm" dy="64.5mm"/> <Layout nx="3" ny="4" x0="28mm" y0="24.5mm" dx="55mm" dy="64.5mm"/>
@@ -426,7 +398,6 @@
<Template brand="Sattleford" part="VM-5061" size="A4" _description="Business cards"> <Template brand="Sattleford" part="VM-5061" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.pearl.de/a-VM5061-2014.shtml"/>
<Label-rectangle id="0" width="86mm" height="53.8mm" round="0mm" x_waste="2.5mm" y_waste="1mm"> <Label-rectangle id="0" width="86mm" height="53.8mm" round="0mm" x_waste="2.5mm" y_waste="1mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16.5mm" y0="10mm" dx="91mm" dy="55.8mm"/> <Layout nx="2" ny="5" x0="16.5mm" y0="10mm" dx="91mm" dy="55.8mm"/>
@@ -441,7 +412,6 @@
<Template brand="Sattleford" part="VM-6059" size="A4" _description="Business cards"> <Template brand="Sattleford" part="VM-6059" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.pearl.de/a-VM6059-2013.shtml"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16mm" y0="14mm" dx="95mm" dy="54mm"/> <Layout nx="2" ny="5" x0="16mm" y0="14mm" dx="95mm" dy="54mm"/>
@@ -456,7 +426,6 @@
<Template brand="Sattleford" part="VM-6066" size="A4" _description="Business cards"> <Template brand="Sattleford" part="VM-6066" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.pearl.de/a-VM6066-2013.shtml"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="14mm" y0="13mm" dx="95mm" dy="54mm"/> <Layout nx="2" ny="5" x0="14mm" y0="13mm" dx="95mm" dy="54mm"/>
@@ -471,7 +440,6 @@
<Template brand="Sattleford" part="VM-6067" size="A4" _description="Name plates"> <Template brand="Sattleford" part="VM-6067" size="A4" _description="Name plates">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.pearl.de/a-VM6067-5026.shtml"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="13mm" dx="95mm" dy="54mm"/> <Layout nx="2" ny="5" x0="15mm" y0="13mm" dx="95mm" dy="54mm"/>
@@ -487,7 +455,6 @@
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta category="photo"/> <Meta category="photo"/>
<Meta product_url="http://www.pearl.de/a-VM6102-2202.shtml"/>
<Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm"> <Label-rectangle id="0" width="45mm" height="55mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/> <Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/>
@@ -503,7 +470,6 @@
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.pearl.de/a-VM6200-2013.shtml"/>
<Label-rectangle id="0" width="180mm" height="50mm" round="3mm" x_waste="0mm" y_waste="2.5mm"> <Label-rectangle id="0" width="180mm" height="50mm" round="3mm" x_waste="0mm" y_waste="2.5mm">
<Markup-rect x1="3.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/> <Markup-rect x1="3.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/>
<Markup-rect x1="93.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/> <Markup-rect x1="93.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/>
@@ -518,7 +484,6 @@
<Template brand="Sattleford" part="VM-6253" size="A4" _description="Business cards"> <Template brand="Sattleford" part="VM-6253" size="A4" _description="Business cards">
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta product_url="http://www.pearl.de/a-VM6253-2013.shtml"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="1mm" y_waste="2.5mm"> <Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="1mm" y_waste="2.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16.5mm" y0="6mm" dx="90mm" dy="55.5mm"/> <Layout nx="2" ny="5" x0="16.5mm" y0="6mm" dx="90mm" dy="55.5mm"/>
@@ -534,7 +499,6 @@
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.pearl.de/a-VM6356-2013.shtml"/>
<Label-rectangle id="0" width="170mm" height="54mm" round="0mm" x_waste="0mm" y_waste="0mm"> <Label-rectangle id="0" width="170mm" height="54mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-rect x1="3.2mm" y1="3.2mm" w="78.6mm" h="47.6mm"/> <Markup-rect x1="3.2mm" y1="3.2mm" w="78.6mm" h="47.6mm"/>
<Markup-rect x1="88.2mm" y1="3.2mm" w="78.6mm" h="47.6mm"/> <Markup-rect x1="88.2mm" y1="3.2mm" w="78.6mm" h="47.6mm"/>
@@ -553,7 +517,6 @@
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta category="foldable"/> <Meta category="foldable"/>
<Meta product_url="http://www.pearl.de/a-VM6700-2013.shtml"/>
<Label-rectangle id="0" width="180mm" height="50mm" round="0mm" x_waste="0mm" y_waste="2.5mm"> <Label-rectangle id="0" width="180mm" height="50mm" round="0mm" x_waste="0mm" y_waste="2.5mm">
<Markup-rect x1="3.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/> <Markup-rect x1="3.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/>
<Markup-rect x1="93.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/> <Markup-rect x1="93.2mm" y1="3.2mm" w="83.6mm" h="43.6mm"/>
@@ -570,7 +533,6 @@
<Template brand="Sattleford" part="VM-6084" size="A4" _description="Elliptical labels"> <Template brand="Sattleford" part="VM-6084" size="A4" _description="Elliptical labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.pearl.de/a-VM6084-2204.shtml"/>
<Label-ellipse id="0" width="63.5mm" height="42.3mm" waste="0mm"> <Label-ellipse id="0" width="63.5mm" height="42.3mm" waste="0mm">
<Markup-margin size="2mm"/> <Markup-margin size="2mm"/>
<Layout nx="3" ny="6" x0="7.25mm" y0="11.6mm" dx="66mm" dy="46.3mm"/> <Layout nx="3" ny="6" x0="7.25mm" y0="11.6mm" dx="66mm" dy="46.3mm"/>
@@ -588,7 +550,6 @@
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta print="mirrored"/> <Meta print="mirrored"/>
<Meta product_url="http://www.pearl.de/a-VM5112-2411.shtml"/>
<Label-rectangle id="0" width="85mm" height="54.25mm" round="3.5mm" x_waste="7mm" y_waste="7.5mm"> <Label-rectangle id="0" width="85mm" height="54.25mm" round="3.5mm" x_waste="7mm" y_waste="7.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="12mm" y0="21mm" dx="100mm" dy="68.75mm"/> <Layout nx="2" ny="4" x0="12mm" y0="21mm" dx="100mm" dy="68.75mm"/>
@@ -604,7 +565,6 @@
<Meta category="card"/> <Meta category="card"/>
<Meta category="business-card"/> <Meta category="business-card"/>
<Meta print="mirrored"/> <Meta print="mirrored"/>
<Meta product_url="http://www.pearl.de/a-VM6310-2013.shtml"/>
<Label-rectangle id="0" width="85mm" height="53.5mm" round="2.5mm" x_waste="7.5mm" y_waste="7.5mm"> <Label-rectangle id="0" width="85mm" height="53.5mm" round="2.5mm" x_waste="7.5mm" y_waste="7.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="12mm" y0="18mm" dx="100mm" dy="69mm"/> <Layout nx="2" ny="4" x0="12mm" y0="18mm" dx="100mm" dy="69mm"/>
@@ -620,7 +580,6 @@
<Template brand="Your Design" part="VM-6352" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6352" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6352-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="17.9mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="17.9mm" waste="1.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -634,7 +593,6 @@
<Template brand="Your Design" part="VM-6353" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6353" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6353-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -648,7 +606,6 @@
<Template brand="Your Design" part="VM-6354" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6354" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6354-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="18mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="18mm" waste="1.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -662,7 +619,6 @@
<Template brand="Your Design" part="VM-6355" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6355" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6355-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -676,7 +632,6 @@
<Template brand="Your Design" part="VM-6542" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6542" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6542-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="3.175mm"> <Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="3.175mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46mm" y0="25mm" dx="123.75mm" dy="128mm"/> <Layout nx="1" ny="2" x0="46mm" y0="25mm" dx="123.75mm" dy="128mm"/>
@@ -689,7 +644,6 @@
<Template brand="Your Design" part="VM-6754" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6754" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6754-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="18mm" waste="3.175mm"> <Label-cd id="0" radius="58.7mm" hole="18mm" waste="3.175mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="20.5mm" dx="123.75mm" dy="138mm"/> <Layout nx="1" ny="2" x0="46.5mm" y0="20.5mm" dx="123.75mm" dy="138mm"/>
@@ -702,7 +656,6 @@
<Template brand="Your Design" part="VM-6852" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6852" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6852-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="17.9mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="17.9mm" waste="1.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -716,7 +669,6 @@
<Template brand="PEARL" part="VM-6853" size="A4" _description="CD/DVD labels"> <Template brand="PEARL" part="VM-6853" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6853-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="8.9mm" waste="1.5mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
@@ -730,7 +682,6 @@
<Template brand="Your Design" part="VM-6854" size="A4" _description="CD/DVD labels"> <Template brand="Your Design" part="VM-6854" size="A4" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.pearl.de/a-VM6854-2213.shtml"/>
<Label-cd id="0" radius="58.7mm" hole="18mm" waste="1.5mm"> <Label-cd id="0" radius="58.7mm" hole="18mm" waste="1.5mm">
<Markup-margin size="3.2mm"/> <Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/> <Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
File diff suppressed because it is too large Load Diff
+1 -63
View File
@@ -2,11 +2,10 @@
<Glabels-templates> <Glabels-templates>
<!-- ******************************************************************** --> <!-- ******************************************************************** -->
<!-- Sheetlabels products. --> <!-- Sheetlabels products. -->
<!-- ******************************************************************** --> <!-- ******************************************************************** -->
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 4 per sheet --> <!-- SheetLabels: Rectangular labels, 4 per sheet -->
@@ -14,21 +13,18 @@
<Template brand="SheetLabels" part="SL1" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL1" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL1"/>
<Label-rectangle id="0" width="5.5in" height="2.25in" round="0.2in" x_waste="1in" y_waste="0.125in"> <Label-rectangle id="0" width="5.5in" height="2.25in" round="0.2in" x_waste="1in" y_waste="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="1" ny="4" x0="1.5in" y0="0.625in" dx="7.5in" dy="2.5in"/> <Layout nx="1" ny="4" x0="1.5in" y0="0.625in" dx="7.5in" dy="2.5in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 4 per sheet --> <!-- SheetLabels: Rectangular labels, 4 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL10" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL10" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL10"/>
<Label-rectangle id="0" width="109.5mm" height="50.8mm" round="5mm" x_waste="9mm" y_waste="9mm"> <Label-rectangle id="0" width="109.5mm" height="50.8mm" round="5mm" x_waste="9mm" y_waste="9mm">
<Markup-margin size="3.175mm"/> <Markup-margin size="3.175mm"/>
<Layout nx="1" ny="4" x0="53.2mm" y0="12.7mm" dx="127.5mm" dy="68.8mm"/> <Layout nx="1" ny="4" x0="53.2mm" y0="12.7mm" dx="127.5mm" dy="68.8mm"/>
@@ -41,7 +37,6 @@
<Template brand="SheetLabels" part="SL100" size="US-Letter" _description="Address labels"> <Template brand="SheetLabels" part="SL100" size="US-Letter" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL100"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in"> <Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/> <Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
@@ -54,7 +49,6 @@
<Template brand="SheetLabels" part="SL101" size="US-Letter" _description="Address labels"> <Template brand="SheetLabels" part="SL101" size="US-Letter" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL101"/>
<Label-rectangle id="0" width="4in" height="1.333333333in" round="0.0625in"> <Label-rectangle id="0" width="4in" height="1.333333333in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7" <Layout nx="2" ny="7"
@@ -68,7 +62,6 @@
<Template brand="SheetLabels" part="SL102" size="US-Letter" _description="Shipping labels"> <Template brand="SheetLabels" part="SL102" size="US-Letter" _description="Shipping labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL102"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.125in"> <Label-rectangle id="0" width="4in" height="2in" round="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/> <Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/>
@@ -81,7 +74,6 @@
<Template brand="SheetLabels" part="SL103" size="US-Letter" _description="Shipping labels"> <Template brand="SheetLabels" part="SL103" size="US-Letter" _description="Shipping labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL103"/>
<Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in"> <Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/> <Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
@@ -94,7 +86,6 @@
<Template brand="SheetLabels" part="SL104" size="US-Letter" _description="Shipping labels"> <Template brand="SheetLabels" part="SL104" size="US-Letter" _description="Shipping labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL104"/>
<Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in"> <Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/> <Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
@@ -107,7 +98,6 @@
<Template brand="SheetLabels" part="SL105" size="US-Letter" _description="Return address labels"> <Template brand="SheetLabels" part="SL105" size="US-Letter" _description="Return address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL105"/>
<Label-rectangle id="0" width="1.75in" height="0.5in" round="0.0625in"> <Label-rectangle id="0" width="1.75in" height="0.5in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/> <Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
@@ -120,7 +110,6 @@
<Template brand="SheetLabels" part="SL107" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL107" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL107"/>
<Label-round id="0" radius="0.8125in" waste="0pt"> <Label-round id="0" radius="0.8125in" waste="0pt">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="4" ny="6" x0="0.4157in" y0="0.549in" dx="2.0145in" dy="1.6554in"/> <Layout nx="4" ny="6" x0="0.4157in" y0="0.549in" dx="2.0145in" dy="1.6554in"/>
@@ -133,7 +122,6 @@
<Template brand="SheetLabels" part="SL108" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL108" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL108"/>
<Label-round id="0" radius="1.25in" waste="0pt"> <Label-round id="0" radius="1.25in" waste="0pt">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/> <Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/>
@@ -145,7 +133,6 @@
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL109" size="US-Letter" _description="Filing labels"> <Template brand="SheetLabels" part="SL109" size="US-Letter" _description="Filing labels">
<Meta category="label"/> <Meta category="label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL109"/>
<Label-rectangle id="0" width="3.4375in" height="0.666666667in" round="0.0625in"> <Label-rectangle id="0" width="3.4375in" height="0.666666667in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="2" ny="15" x0="0.53125in" y0="0.5in" dx="4in" dy="0.666666667in"/> <Layout nx="2" ny="15" x0="0.53125in" y0="0.5in" dx="4in" dy="0.666666667in"/>
@@ -157,7 +144,6 @@
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL11" size="US-Letter" _description="Shipping labels"> <Template brand="SheetLabels" part="SL11" size="US-Letter" _description="Shipping labels">
<Meta category="label"/> <Meta category="label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL11"/>
<Label-rectangle id="0" width="2.3125in" height="1.4375in" round="0in" x_waste="0.125in" y_waste="0.125in"> <Label-rectangle id="0" width="2.3125in" height="1.4375in" round="0in" x_waste="0.125in" y_waste="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="3" ny="6" x0="0.53125in" y0="0.563in" dx="2.5625in" dy="1.688in"/> <Layout nx="3" ny="6" x0="0.53125in" y0="0.563in" dx="2.5625in" dy="1.688in"/>
@@ -170,7 +156,6 @@
<Template brand="SheetLabels" part="SL110" size="US-Letter" _description="CD/DVD labels"> <Template brand="SheetLabels" part="SL110" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL110"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt"> <Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/> <Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="144pt" y0="36pt" dx="351pt" dy="396pt"/> <Layout nx="1" ny="2" x0="144pt" y0="36pt" dx="351pt" dy="396pt"/>
@@ -183,7 +168,6 @@
<Template brand="SheetLabels" part="SL113" size="US-Letter" _description="CD/DVD labels"> <Template brand="SheetLabels" part="SL113" size="US-Letter" _description="CD/DVD labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL113"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt"> <Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/> <Markup-margin size="9pt"/>
<Layout nx="1" ny="1" x0="0.7cm" y0="0.7cm" dx="0pt" dy="0cm"/> <Layout nx="1" ny="1" x0="0.7cm" y0="0.7cm" dx="0pt" dy="0cm"/>
@@ -198,7 +182,6 @@
<Template brand="SheetLabels" part="SL114" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL114" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL114"/>
<Label-round id="0" radius="0.5in" waste="0.061in"> <Label-round id="0" radius="0.5in" waste="0.061in">
<Markup-margin size="0.061in"/> <Markup-margin size="0.061in"/>
<Layout nx="7" ny="9" x0="0.375in" y0="0.5in" dx="1.125in" dy="1.125in"/> <Layout nx="7" ny="9" x0="0.375in" y0="0.5in" dx="1.125in" dy="1.125in"/>
@@ -211,7 +194,6 @@
<Template brand="SheetLabels" part="SL115" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL115" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL115"/>
<Label-round id="0" radius="0.375in" waste="0.031in"> <Label-round id="0" radius="0.375in" waste="0.031in">
<Markup-margin size="0.06in"/> <Markup-margin size="0.06in"/>
<Layout nx="9" ny="12" x0="0.625in" y0="0.656in" dx="0.812in" dy="0.812in"/> <Layout nx="9" ny="12" x0="0.625in" y0="0.656in" dx="0.812in" dy="0.812in"/>
@@ -224,7 +206,6 @@
<Template brand="SheetLabels" part="SL116" size="US-Letter" _description="Address labels"> <Template brand="SheetLabels" part="SL116" size="US-Letter" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL116"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in"> <Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/> <Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
@@ -237,7 +218,6 @@
<Template brand="SheetLabels" part="SL121" size="US-Letter" _description="Diskette labels"> <Template brand="SheetLabels" part="SL121" size="US-Letter" _description="Diskette labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL121"/>
<Label-rectangle id="0" width="2.75in" height="2.75in" round="0.0625in"> <Label-rectangle id="0" width="2.75in" height="2.75in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/> <Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/>
@@ -251,7 +231,6 @@
_description="CD/DVD labels (disc labels)"> _description="CD/DVD labels (disc labels)">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL122"/>
<Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in"> <Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/> <Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
@@ -262,20 +241,17 @@
</Label-cd> </Label-cd>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Round labels, 20 per sheet --> <!-- SheetLabels: Round labels, 20 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL123" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL123" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL123"/>
<Label-round id="0" radius="1in" waste="0.03in"> <Label-round id="0" radius="1in" waste="0.03in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="4" ny="5" x0="0.156in" y0="0.375in" dx="2.062in" dy="2.062in"/> <Layout nx="4" ny="5" x0="0.156in" y0="0.375in" dx="2.062in" dy="2.062in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Round labels, 30 per sheet --> <!-- SheetLabels: Round labels, 30 per sheet -->
@@ -283,49 +259,42 @@
<Template brand="SheetLabels" part="SL125" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL125" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL125"/>
<Label-round id="0" radius="0.75in" waste="0.062in"> <Label-round id="0" radius="0.75in" waste="0.062in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="5" ny="6" x0="0.25in" y0="0.5in" dx="1.625in" dy="1.7in"/> <Layout nx="5" ny="6" x0="0.25in" y0="0.5in" dx="1.625in" dy="1.7in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Round labels, 6 per sheet --> <!-- SheetLabels: Round labels, 6 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL128" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL128" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL128"/>
<Label-round id="0" radius="1.75in" waste="0in"> <Label-round id="0" radius="1.75in" waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.5in" y0="0.2in" dx="4in" dy="3.55in"/> <Layout nx="2" ny="3" x0="0.5in" y0="0.2in" dx="4in" dy="3.55in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Round labels, 1 per sheet --> <!-- SheetLabels: Round labels, 1 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL129" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL129" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL129"/>
<Label-round id="0" radius="2.75in" waste="1.5in"> <Label-round id="0" radius="2.75in" waste="1.5in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="1" ny="1" x0="1.5in" y0="2.75in" dx="8.5in" dy="5.5in"/> <Layout nx="1" ny="1" x0="1.5in" y0="2.75in" dx="8.5in" dy="5.5in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 4 per sheet --> <!-- SheetLabels: Rectangular labels, 4 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL145" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL145" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL145"/>
<Label-rectangle id="0" width="3.5in" height="5in" round="0.1in" x_waste="0.25in" y_waste="0in"> <Label-rectangle id="0" width="3.5in" height="5in" round="0.1in" x_waste="0.25in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/> <Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/>
@@ -338,13 +307,11 @@
<Template brand="SheetLabels" part="SL200" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL200" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL200"/>
<Label-round id="0" radius="1.969in" waste="0.03in"> <Label-round id="0" radius="1.969in" waste="0.03in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="2" x0="0.28125in" y0="1.531in" dx="4in" dy="4in"/> <Layout nx="2" ny="2" x0="0.28125in" y0="1.531in" dx="4in" dy="4in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Elliptical labels, 10 per sheet --> <!-- SheetLabels: Elliptical labels, 10 per sheet -->
@@ -352,28 +319,24 @@
<Template brand="SheetLabels" part="SL201" size="US-Letter" _description="Bottle/jar labels"> <Template brand="SheetLabels" part="SL201" size="US-Letter" _description="Bottle/jar labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="elliptical-label"/> <Meta category="elliptical-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL201"/>
<Label-ellipse id="0" width="3.937in" height="1.937in" waste="0.03in"> <Label-ellipse id="0" width="3.937in" height="1.937in" waste="0.03in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.281in" y0="0.531in" dx="4in" dy="2in"/> <Layout nx="2" ny="5" x0="0.281in" y0="0.531in" dx="4in" dy="2in"/>
</Label-ellipse> </Label-ellipse>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Round labels, 6 per sheet --> <!-- SheetLabels: Round labels, 6 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL228" size="US-Letter" _description="Round labels"> <Template brand="SheetLabels" part="SL228" size="US-Letter" _description="Round labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="round-label"/> <Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL228"/>
<Label-round id="0" radius="1.5in" waste="0.25in"> <Label-round id="0" radius="1.5in" waste="0.25in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.75in" y0="0.5in" dx="4in" dy="3.5in"/> <Layout nx="2" ny="3" x0="0.75in" y0="0.5in" dx="4in" dy="3.5in"/>
</Label-round> </Label-round>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: VCR labels, 1_7/8'' x 3_1/16'', 10 per sheet --> <!-- SheetLabels: VCR labels, 1_7/8'' x 3_1/16'', 10 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
@@ -381,27 +344,23 @@
_description="Video tape face labels"> _description="Video tape face labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL302"/>
<Label-rectangle id="0" width="220" height="133" round="5"> <Label-rectangle id="0" width="220" height="133" round="5">
<Markup-margin size="5"/> <Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/> <Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Bottle labels, 3 per sheet --> <!-- SheetLabels: Bottle labels, 3 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL303" size="US-Letter" _description="Bottle/jar labels"> <Template brand="SheetLabels" part="SL303" size="US-Letter" _description="Bottle/jar labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL303"/>
<Label-rectangle id="0" width="7in" height="3in" round="0.1in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="7in" height="3in" round="0.1in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="1" ny="3" x0="0.75in" y0="1in" dx="7in" dy="3in"/> <Layout nx="1" ny="3" x0="0.75in" y0="1in" dx="7in" dy="3in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Bottle labels, 5 per sheet --> <!-- SheetLabels: Bottle labels, 5 per sheet -->
@@ -409,13 +368,11 @@
<Template brand="SheetLabels" part="SL304" size="US-Letter" _description="Bottle/jar labels"> <Template brand="SheetLabels" part="SL304" size="US-Letter" _description="Bottle/jar labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL304"/>
<Label-rectangle id="0" width="8.5in" height="2in" round="0in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="8.5in" height="2in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="1" ny="5" x0="0in" y0="0.5in" dx="8.5in" dy="2in"/> <Layout nx="1" ny="5" x0="0in" y0="0.5in" dx="8.5in" dy="2in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 2 per sheet --> <!-- SheetLabels: Rectangular labels, 2 per sheet -->
@@ -423,13 +380,11 @@
<Template brand="SheetLabels" part="SL517" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL517" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL517"/>
<Label-rectangle id="0" width="6.5in" height="4.5in" round="0.375in" x_waste="0in" y_waste="0.343in"> <Label-rectangle id="0" width="6.5in" height="4.5in" round="0.375in" x_waste="0in" y_waste="0.343in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="1" ny="2" x0="1in" y0="0.656in" dx="6.5in" dy="5.1875in"/> <Layout nx="1" ny="2" x0="1in" y0="0.656in" dx="6.5in" dy="5.1875in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 4 per sheet --> <!-- SheetLabels: Rectangular labels, 4 per sheet -->
@@ -437,63 +392,54 @@
<Template brand="SheetLabels" part="SL522" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL522" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL522"/>
<Label-rectangle id="0" width="4in" height="5in" round="0.16in" x_waste="0.09in" y_waste="0in"> <Label-rectangle id="0" width="4in" height="5in" round="0.16in" x_waste="0.09in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="2" x0="0.125in" y0="0.5in" dx="4.19in" dy="5in"/> <Layout nx="2" ny="2" x0="0.125in" y0="0.5in" dx="4.19in" dy="5in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 5 per sheet --> <!-- SheetLabels: Rectangular labels, 5 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL527" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL527" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL527"/>
<Label-rectangle id="0" width="8in" height="2in" round="0in" x_waste="0.1in" y_waste="0in"> <Label-rectangle id="0" width="8in" height="2in" round="0in" x_waste="0.1in" y_waste="0in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="1" ny="5" x0="0.25in" y0="0.5in" dx="8.2in" dy="2in"/> <Layout nx="1" ny="5" x0="0.25in" y0="0.5in" dx="8.2in" dy="2in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 10 per sheet --> <!-- SheetLabels: Rectangular labels, 10 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL529" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL529" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL529"/>
<Label-rectangle id="0" width="8in" height="1in" round="0in" x_waste="0.1in" y_waste="0in"> <Label-rectangle id="0" width="8in" height="1in" round="0in" x_waste="0.1in" y_waste="0in">
<Markup-margin size="0.06in"/> <Markup-margin size="0.06in"/>
<Layout nx="1" ny="10" x0="0.25in" y0="0.5in" dx="8.2in" dy="1in"/> <Layout nx="1" ny="10" x0="0.25in" y0="0.5in" dx="8.2in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 6 per sheet --> <!-- SheetLabels: Rectangular labels, 6 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL530" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL530" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL5"/>
<Label-rectangle id="0" width="4.25in" height="3.665in" round="0in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="4.25in" height="3.665in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0in" y0="0in" dx="4.25in" dy="3.665in"/> <Layout nx="2" ny="3" x0="0in" y0="0in" dx="4.25in" dy="3.665in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Mailing labels, 10 per sheet --> <!-- SheetLabels: Mailing labels, 10 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL540" size="US-Letter" _description="Address labels"> <Template brand="SheetLabels" part="SL540" size="US-Letter" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL540"/>
<Label-rectangle id="0" width="4.25in" height="2in" round="0in"> <Label-rectangle id="0" width="4.25in" height="2in" round="0in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/> <Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/>
@@ -506,21 +452,18 @@
<Template brand="SheetLabels" part="SL550" size="US-Letter" _description="Address labels"> <Template brand="SheetLabels" part="SL550" size="US-Letter" _description="Address labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL550"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.0625in"> <Label-rectangle id="0" width="4in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/> <Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 21 per sheet --> <!-- SheetLabels: Rectangular labels, 21 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL552" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL552" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL552"/>
<Label-rectangle id="0" width="2.833in" height="1.5in" round="0in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="2.833in" height="1.5in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="3" ny="7" x0="0in" y0="0.25in" dx="2.833in" dy="1.5in"/> <Layout nx="3" ny="7" x0="0in" y0="0.25in" dx="2.833in" dy="1.5in"/>
@@ -533,21 +476,18 @@
<Template brand="SheetLabels" part="SL556" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL556" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL556"/>
<Label-rectangle id="0" width="2in" height="1in" round="0in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="2in" height="1in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="4" ny="10" x0="0.25in" y0="0.5in" dx="2in" dy="1in"/> <Layout nx="4" ny="10" x0="0.25in" y0="0.5in" dx="2in" dy="1in"/>
</Label-rectangle> </Label-rectangle>
</Template> </Template>
<!-- =================================================================== --> <!-- =================================================================== -->
<!-- SheetLabels: Rectangular labels, 50 per sheet --> <!-- SheetLabels: Rectangular labels, 50 per sheet -->
<!-- =================================================================== --> <!-- =================================================================== -->
<Template brand="SheetLabels" part="SL559" size="US-Letter" _description="Rectangular labels"> <Template brand="SheetLabels" part="SL559" size="US-Letter" _description="Rectangular labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="rectangle-label"/> <Meta category="rectangle-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL559"/>
<Label-rectangle id="0" width="1.5in" height="1in" round="0in" x_waste="0in" y_waste="0in"> <Label-rectangle id="0" width="1.5in" height="1in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="5" ny="10" x0="0.5in" y0="0.5in" dx="1.5in" dy="1in"/> <Layout nx="5" ny="10" x0="0.5in" y0="0.5in" dx="1.5in" dy="1in"/>
@@ -561,7 +501,6 @@
_description="CD/DVD labels (disc labels)"> _description="CD/DVD labels (disc labels)">
<Meta category="label"/> <Meta category="label"/>
<Meta category="media"/> <Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL563"/>
<Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in"> <Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in">
<Markup-margin size="0.0625in"/> <Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/> <Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
@@ -578,7 +517,6 @@
<Template brand="SheetLabels" part="SL573" size="US-Letter" _description="Mailing labels"> <Template brand="SheetLabels" part="SL573" size="US-Letter" _description="Mailing labels">
<Meta category="label"/> <Meta category="label"/>
<Meta category="mail"/> <Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL573"/>
<Label-rectangle id="0" width="4in" height="3in" round="0.125in"> <Label-rectangle id="0" width="4in" height="3in" round="0.125in">
<Markup-margin size="0.125in"/> <Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.19in" y0="1.in" dx="4.125in" dy="3in"/> <Layout nx="2" ny="3" x0="0.19in" y0="1.in" dx="4.125in" dy="3in"/>