Initialize Papers, Categories and Vendors in Db.

This commit is contained in:
Jim Evins
2013-11-03 14:45:31 -05:00
parent 6ebc6a3177
commit 21c6b82b04
37 changed files with 10202 additions and 48 deletions
+4 -23
View File
@@ -24,12 +24,6 @@
#include "MainWindow.h"
#include "libglabels/Db.h"
////// TEMPORARY TESTING ////////
#include "libglabels/XmlPaperParser.h"
#include "libglabels/XmlCategoryParser.h"
#include "libglabels/XmlVendorParser.h"
/////////////////////////////////
using namespace gLabels;
using namespace libglabels;
@@ -44,23 +38,10 @@ int main( int argc, char **argv )
Db::init();
////// TEMPORARY TESTING ////////
{
XmlPaperParser parser;
parser.readFile( "/usr/local/share/libglabels-3.0/templates/paper-sizes.xml" );
Db::printKnownPapers();
}
{
XmlCategoryParser parser;
parser.readFile( "/usr/local/share/libglabels-3.0/templates/categories.xml" );
Db::printKnownCategories();
}
{
XmlVendorParser parser;
parser.readFile( "/usr/local/share/libglabels-3.0/templates/vendors.xml" );
Db::printKnownVendors();
}
Db::printKnownPapers();
Db::printKnownCategories();
Db::printKnownVendors();
Db::printKnownTemplates();
/////////////////////////////////
MainWindow mainWin;
+3
View File
@@ -2,6 +2,8 @@ cmake_minimum_required (VERSION 2.8)
project (libglabels CXX)
configure_file (Config.h.in ${CMAKE_CURRENT_BINARY_DIR}/Config.h @ONLY)
set (libglabels_sources
Category.cpp
Paper.cpp
@@ -37,6 +39,7 @@ include (${QT_USE_FILE})
include_directories (
${CMAKE_CURRENT_BINARY_DIR}
)
link_directories (
+36
View File
@@ -0,0 +1,36 @@
/* Config.h
*
* Copyright (C) 2013 Jim Evins <evins@snaught.com>
*
* This file is part of gLabels-qt.
*
* gLabels-qt is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* gLabels-qt is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef libglabels_Config_h
#define libglabels_Config_h
namespace libglabels
{
namespace Config
{
const QString PROJECT_SOURCE_DIR = "@glabels_qt_SOURCE_DIR@";
}
}
#endif // libglabels_Config_h
+72 -17
View File
@@ -20,8 +20,14 @@
#include "Db.h"
#include <QApplication>
#include <iostream>
#include "Config.h"
#include "XmlPaperParser.h"
#include "XmlCategoryParser.h"
#include "XmlVendorParser.h"
namespace libglabels
{
@@ -40,7 +46,10 @@ namespace libglabels
Db::Db()
{
// TODO
readPapers();
readCategories();
readVendors();
readTemplates();
}
@@ -499,52 +508,98 @@ namespace libglabels
}
void Db::read_papers()
QDir Db::systemTemplatesDir()
{
// TODO
QDir dir(QApplication::applicationDirPath());
if ( dir.dirName() == "bin" )
{
dir.cdUp();
dir.cd( "share" );
dir.cd( "libglabels-3.0" ); // TODO: install qt version
}
else
{
// Working out of build directory
dir.cd( Config::PROJECT_SOURCE_DIR );
}
dir.cd( "templates" );
return dir;
}
void Db::read_papers_from_dir( const QString &dirName )
void Db::readPapers()
{
// TODO
readPapersFromDir( systemTemplatesDir() );
}
void Db::read_categories()
void Db::readPapersFromDir( const QDir &dir )
{
// TODO
XmlPaperParser parser;
foreach ( QString fileName, dir.entryList( QDir::Files ) )
{
if ( fileName == "paper-sizes.xml" )
{
parser.readFile( dir.absoluteFilePath( fileName ) );
}
}
}
void Db::read_categories_from_dir( const QString &dirName )
void Db::readCategories()
{
// TODO
readCategoriesFromDir( systemTemplatesDir() );
}
void Db::read_vendors()
void Db::readCategoriesFromDir( const QDir &dir )
{
// TODO
XmlCategoryParser parser;
foreach ( QString fileName, dir.entryList( QDir::Files ) )
{
if ( fileName == "categories.xml" )
{
parser.readFile( dir.absoluteFilePath( fileName ) );
}
}
}
void Db::read_vendors_from_dir( const QString &dirName )
void Db::readVendors()
{
// TODO
readVendorsFromDir( systemTemplatesDir() );
}
void Db::read_templates()
void Db::readVendorsFromDir( const QDir &dir )
{
// TODO
XmlVendorParser parser;
foreach ( QString fileName, dir.entryList( QDir::Files ) )
{
if ( fileName == "vendors.xml" )
{
parser.readFile( dir.absoluteFilePath( fileName ) );
}
}
}
void Db::read_templates_from_dir( const QString &dirName )
void Db::readTemplates()
{
readTemplatesFromDir( systemTemplatesDir() );
// TODO: Read user directories
}
void Db::readTemplatesFromDir( const QDir &dir )
{
// TODO
}
}
+11 -8
View File
@@ -24,6 +24,7 @@
#include <QCoreApplication>
#include <QString>
#include <QDir>
#include "Paper.h"
#include "Category.h"
@@ -82,17 +83,19 @@ namespace libglabels
private:
static void read_papers();
static void read_papers_from_dir( const QString &dirName );
static QDir systemTemplatesDir();
static void read_categories();
static void read_categories_from_dir( const QString &dirName );
static void readPapers();
static void readPapersFromDir( const QDir &dir );
static void read_vendors();
static void read_vendors_from_dir( const QString &dirName );
static void readCategories();
static void readCategoriesFromDir( const QDir &dir );
static void read_templates();
static void read_templates_from_dir( const QString &dirName );
static void readVendors();
static void readVendorsFromDir( const QDir &dir );
static void readTemplates();
static void readTemplatesFromDir( const QDir &dir );
private:
+353
View File
@@ -0,0 +1,353 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ************************* -->
<!-- -->
<!-- Ascom -->
<!-- -->
<!-- ************************* -->
<!-- Ascom was bought some years ago by Hovat. -->
<!-- Label data are now available from the following URL: -->
<!-- http://www.hovat.co.uk/office_templates.zip -->
<!-- =================================================================== -->
<!-- Ascom A4/24/MKII: Rectangular Labels, 24 per sheet -->
<!-- =================================================================== -->
<!-- TODO: Is this the real part #? -->
<Template brand="Ascom" part="A4/24/MKII" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="181" height="96" round="10">
<Markup-margin size="5"/>
<Layout nx="3" ny="8" x0="19" y0="36" dx="187" dy="96"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-236: Rectangular Labels, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-236" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="200mm" height="287mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="5mm" y0="5mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="Ascom" part="ABP-237" equiv="ABP-236"/>
<!-- =================================================================== -->
<!-- Ascom ABP-238: Rectangular Labels, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-238" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="101mm" height="143.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="4mm" y0="5mm" dx="101mm" dy="143.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-239: Rectangular Labels, 6 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-239" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="101mm" height="93mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="3" x0="4mm" y0="9mm" dx="101mm" dy="93mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-240: Rectangular Labels, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-240" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99mm" height="68mm" round="0mm" x_waste="1.2mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="5mm" y0="14mm" dx="102mm" dy="68mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-241: Rectangular Labels, 6 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-241" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="101mm" height="68mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="4mm" y0="12.5mm" dx="101mm" dy="68mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-243: Rectangular Labels, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-243" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99mm" height="57mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="6mm" y0="6mm" dx="99mm" dy="57mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-244: Rectangular Labels, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-244" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="72mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="6.8mm" y0="4.5mm" dx="66.5mm" dy="72mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-251: Rectangular Labels, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-251" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="47mm" height="66mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="4" ny="4" x0="11mm" y0="16.5mm" dx="47mm" dy="66mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-256: Rectangular Labels, 30 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-256" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="65.5mm" height="28mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="10" x0="6.5mm" y0="8.5mm" dx="65.5mm" dy="28mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-416: Rectangular Labels, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-416" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="66.5mm" height="34mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="5.5mm" y0="12.5mm" dx="66.5mm" dy="34mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-420: Rectangular Labels, 14 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-420" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="98.5mm" height="38mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="5mm" y0="15.5mm" dx="101.5mm" dy="38mm"/>
</Label-rectangle>
</Template>
<Template brand="Ascom" part="ABP-421" equiv="ABP-420"/>
<!-- =================================================================== -->
<!-- Ascom ABP-422: Rectangular Labels, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-422" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="98.5mm" height="34mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="8" x0="5mm" y0="12.5mm" dx="101.5mm" dy="34mm"/>
</Label-rectangle>
</Template>
<Template brand="Ascom" part="ABP-423" equiv="ABP-422"/>
<!-- =================================================================== -->
<!-- Ascom ABP-424: Rectangular Labels, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-424" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="66mm" height="38mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="7" x0="6mm" y0="12.5mm" dx="66mm" dy="38mm"/>
</Label-rectangle>
</Template>
<Template brand="Ascom" part="ABP-425" equiv="ABP-424"/>
<!-- =================================================================== -->
<!-- Ascom ABP-426: Rectangular Labels, 70 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-426" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="38mm" height="19.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="5" ny="14" x0="5mm" y0="12mm" dx="40.5mm" dy="19.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-427: Rectangular Labels, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-427" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="66mm" height="34mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="8" x0="6mm" y0="12.5mm" dx="66mm" dy="34mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-428: Rectangular Labels, 80 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-428" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="38mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="5" ny="13" x0="5mm" y0="10.7mm" dx="40.5mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-501: Rectangular Labels, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-501" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="52mm" round="0mm" x_waste="11.5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="23.5mm" y0="18.5mm" dx="93mm" dy="52mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-502: Rectangular Labels, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-502" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="200mm" height="60mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="4" x0="5mm" y0="28.5mm" dx="200mm" dy="60mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-505: Rectangular Labels, 18 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-505" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="102mm" height="30mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="9" x0="3mm" y0="13.5mm" dx="102mm" dy="30mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-507: Rectangular Labels, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-507" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="76mm" height="46.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="6" x0="27.5mm" y0="9mm" dx="79mm" dy="46.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-508: Video Tape Spine Labels, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-508" size="A4" _description="Video Tape Spine Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="145mm" height="17mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="1" ny="16" x0="32.5mm" y0="14mm" dx="145mm" dy="17mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-509: Rectangular Labels, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-509" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="88.5mm" height="42mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="6" x0="15mm" y0="22.5mm" dx="91.5mm" dy="42mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-510: Rectangular Labels, 84 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-510" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="46mm" height="12.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="21" x0="6mm" y0="16mm" dx="50.7mm" dy="12.7mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-515: CD inlet, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-515" size="A4" _description="CD Inlet">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="34mm" height="114mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="165.5mm" y0="17.5mm" dx="34mm" dy="149mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-518: Rectangular Labels, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-518" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="76.5mm" height="21.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="12" x0="21.5mm" y0="21.5mm" dx="76.5mm" dy="21.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ascom ABP-519: Rectangular Labels, 36 per sheet -->
<!-- =================================================================== -->
<Template brand="Ascom" part="ABP-519" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="24.75mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="12" x0="0mm" y0="0mm" dx="70mm" dy="24.75mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+424
View File
@@ -0,0 +1,424 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Avery A4 products (and look-alikes) -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Avery L4732 family: Mini Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="L4732" size="A4" _description="Mini Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="35.6mm" height="16.9mm" round="1.5mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="1mm"/>
<Layout nx="5" ny="16" x0="11mm" y0="13mm" dx="38.1mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery L4770 family: Mini Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="L4770" size="A4" _description="Mini Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="45.7mm" height="25.4mm" round="1.5mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="1mm"/>
<Layout nx="4" ny="10" x0="10mm" y0="22mm" dx="48.5mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8654" equiv="L4770"/>
<Template brand="Avery" part="L6140" equiv="L4770"/>
<Template brand="Avery" part="L6145" equiv="L4770"/>
<Template brand="Avery" part="L7654" equiv="L4770"/>
<!-- =================================================================== -->
<!-- Avery L4785 family: Name Badges, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="L4785" size="A4" _description="Self-Adhesive Name Badges (Acetate Silk)">
<Meta category="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">
<Markup-margin size="1mm"/>
<Layout nx="2" ny="5" x0="18mm" y0="13mm" dx="95mm" dy="55mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L4784" equiv="L4785"/>
<Template brand="Avery" part="L4786" equiv="L4785"/>
<Template brand="Avery" part="L4787" equiv="L4785"/>
<!-- =================================================================== -->
<!-- Avery L6015 family: CD/DVD Labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="L6015" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.827pt" hole="58.1102pt" waste="9.07087pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="131.811pt" y0="60.6614pt" dx="349.795pt" dy="392.4pt"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Avery 6121 family: Allround labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6121" size="A4" _description="Allround labels">
<Meta category="label"/>
<Label-rectangle id="0" width="107.928pt" height="60.12pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="8.496pt"/>
<Layout nx="5" ny="13" x0="26.928pt" y0="29.736pt" dx="107.928pt" dy="60.12pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 7160 family: Mailing labels, 63.5 x 38.1 mm, 21 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7160" size="A4" _description="Mailing labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="181.4" height="108.0" round="5">
<Markup-margin size="5"/>
<Layout nx="3" ny="7" x0="21.2" y0="43.9" dx="187.2" dy="108.0"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7160" equiv="7160"/>
<Template brand="Avery" part="J8160" equiv="7160"/>
<!-- =================================================================== -->
<!-- Avery 7161 family: Mailing labels, 63.5 x 46.6 mm, 18 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7161" size="A4" _description="Mailing labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="180.2" height="132.6" round="7">
<Markup-margin size="5"/>
<Layout nx="3" ny="6" x0="21" y0="23" dx="186.9" dy="132.5"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7161" equiv="7161"/>
<Template brand="Avery" part="J8161" equiv="7161"/>
<!-- ================================================================== -->
<!-- Avery 7162 family: Mailing labels, 99.1 x 33.9 mm, 16 per sheet -->
<!-- ================================================================== -->
<Template brand="Avery" part="7162" size="A4" _description="Mailing labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="280.9" height="96.1" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="8" x0="11.3" y0="36.8" dx="290.5" dy="96.1"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7162" equiv="7162"/>
<!-- =================================================================== -->
<!-- Avery 7163 family: Mailing labels, 99.1 x 38.1 mm, 14 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7163" size="A4" _description="Mailing labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="280.9" height="108" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="7" x0="9.5" y0="43" dx="292" dy="108"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7163" equiv="7163"/>
<!-- =================================================================== -->
<!-- Avery 7164 family: Address labels, 63.50 x 71.98 mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7164" size="A4" _description="Address labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="180" height="204.038" round="8.5">
<Markup-margin size="5"/>
<Layout nx="3" ny="4" x0="20.84" y0="10" dx="187.08" dy="204.038"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7164" equiv="7164"/>
<Template brand="Avery" part="J8164" equiv="7164"/>
<!-- =================================================================== -->
<!-- Avery 7165 family: Address labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="7165" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="280.8pt" height="191.991pt" round="0pt" waste="0pt">
<Markup-margin size="5.66929pt"/>
<Layout nx="2" ny="4" x0="13.2378pt" y0="36.9638pt" dx="288.113pt" dy="191.991pt"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7165" equiv="7165"/>
<Template brand="Avery" part="J8165" equiv="7165"/>
<!-- =================================================================== -->
<!-- Avery 7169 family: shipping labels, 99.1 x 139.0 mm, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7169" size="A4" _description="Shipping labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="280.9" height="394.0" round="6">
<Markup-margin size="6"/>
<Layout nx="2" ny="2" x0="14.2" y0="20.0" dx="287.7" dy="394.0"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7169" equiv="7169"/>
<!-- =================================================================== -->
<!-- Avery 7414 family: Business Cards, 52mm x 90mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7414" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="255.1" height="147.4" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="42.51" y0="52.44" dx="255.1" dy="147.4"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7414" equiv="7414"/>
<!-- =================================================================== -->
<!-- Avery 7664 family: Diskette Labels, 70mm x 71.9 mm, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="7664" size="A4" _description="Diskette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="70mm" height="71.9mm" round="2.5mm">
<Markup-margin size="5"/>
<Layout nx="2" ny="4" x0="17mm" y0="5mm" dx="104.5mm" dy="72mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L7664" equiv="7664"/>
<!-- =================================================================== -->
<!-- Avery L7676 family: CD/DVD Labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="L7676" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.827pt" hole="24.9449pt" waste="5.66929pt">
<Markup-margin size="5.66929pt"/>
<Layout nx="1" ny="2" x0="131.811pt" y0="62.3622pt" dx="342.992pt" dy="388.346pt"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Avery J8157: Mailing Labels, 33 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="J8157" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="64mm" height="24.3mm" round="3mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="11" x0="6.0mm" y0="14.0mm" dx="66.5mm" dy="24.3mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 8414 family: Business Cards, 50.8 x 87.0 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="8414" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="246.6" height="144" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="42" y0="57.890" dx="264" dy="144"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8414" equiv="8414"/>
<!-- =============================================================== -->
<!-- Avery J8435: CD Inlets Booklet part -->
<!-- =============================================================== -->
<Template brand="Avery" part="8435A" size="A4" _description="CD Booklet">
<Meta category="media"/>
<Label-rectangle id="0" width="155mm" height="125mm" round="0">
<Markup-margin size="2mm"/>
<Markup-line x1="32mm" y1="0mm" x2="32mm" y2="125mm"/>
<Layout nx="1" ny="1" x0="27.5mm" y0="22mm" dx="155mm" dy="125mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8435A" equiv="8435A"/>
<Template brand="Avery" part="32250A" equiv="8435A"/>
<!-- =============================================================== -->
<!-- Avery J8435: CD Inlets Inlet part -->
<!-- =============================================================== -->
<Template brand="Avery" part="8435B" size="A4" _description="CD Inlet">
<Meta category="media"/>
<Label-rectangle id="0" width="155mm" height="122mm" round="0">
<Markup-margin size="2mm"/>
<Markup-line x1="8.5mm" y1="0mm" x2="8.5mm" y2="122mm"/>
<Markup-line x1="146.5mm" y1="0mm" x2="146.5mm" y2="122mm"/>
<Layout nx="1" ny="1" x0="27.5mm" y0="21mm" dx="155mm" dy="122mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8435B" equiv="8435B"/>
<Template brand="Avery" part="32250B" equiv="8435B"/>
<!-- =================================================================== -->
<!-- Avery 8651 family: Mailing labels, 38.1 x 21.2 mm, 65 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="8651" size="A4" _description="Mini Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="108" height="60.09" round="5">
<Markup-margin size="5"/>
<Layout nx="5" ny="13" x0="13.32" y0="30.90" dx="115.09" dy="60.09"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="L8651" equiv="8651"/>
<Template brand="Avery" part="J8651" equiv="8651"/>
<Template brand="Avery" part="J8551" equiv="8651"/>
<Template brand="Avery" part="L7651" equiv="8651"/>
<Template brand="Avery" part="L7551" equiv="8651"/>
<!-- =================================================================== -->
<!-- Avery 8658 family: Identification labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="8658" size="A4" _description="Identification Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="25.4mm" height="10mm" round="1mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="7" ny="27" x0="5mm" y0="13mm" dx="28.5mm" dy="10.14mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8658" equiv="8658" />
<Template brand="Avery" part="L8658" equiv="8658" />
<!-- =================================================================== -->
<!-- Avery 8666 family: Diskette labels (face only), 70 x 52 mm, 10 per -->
<!-- =================================================================== -->
<Template brand="Avery" part="8666" size="A4" _description="Diskette labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="198.4" height="147.4" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="66" y0="53" dx="264" dy="147"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="J8666" equiv="8666" />
<!-- =============================================================== -->
<!-- Avery J8676A: CD/DVD Labels 2 per sheet -->
<!-- =============================================================== -->
<Template brand="Avery" part="8676" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="17" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="130" y0="59.5" dx="0" dy="388"/>
</Label-cd>
</Template>
<Template brand="Avery" part="J8676" equiv="8676" />
<!-- =============================================================== -->
<!-- Avery 18036 Mailing Labels, 70mm x 32mm, 27 per sheet -->
<!-- =============================================================== -->
<Template brand="Avery" part="18036" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="198" height="91" round="0">
<Markup-margin size="10"/>
<Layout nx="3" ny="9" x0="0" y0="13" dx="198" dy="91"/>
</Label-rectangle>
</Template>
<!-- ============================================================ -->
<!-- Avery 32015: Business Cards -->
<!-- ============================================================ -->
<Template brand="Avery" part="32015" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm">
<Markup-margin size="5mm"/>
<Layout nx="2" ny="4" x0="17mm" y0="31.5mm" dx="91mm" dy="60mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="C32015" equiv="32015" />
<!-- ============================================================ -->
<!-- Avery 38931 Family: Rectangular Labels -->
<!-- ============================================================ -->
<Template brand="Avery" part="38931" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="70mm" height="25mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3mm"/>
<Layout nx="3" ny="11" x0="0mm" y0="10mm" dx="70mm" dy="25mm"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="DL33" equiv="38931"/>
<Template brand="Avery" part="CR33" equiv="38931"/>
<!-- ============================================================ -->
<!-- Avery C32011-10: Business Cards -->
<!-- ============================================================ -->
<Template brand="Avery" part="C32011-10" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="13.5mm" dx="95mm" dy="54mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+23
View File
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- Avery non-standard size products (not US-Letter/Legal or ISO) -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Avery 6141 family: File Folder Labels, 5/8'' x 2_3/4'', 7 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="6141" size="Other" width="207pt" height="351pt"
_description="File Folder Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="198pt" height="45pt" round="4.5pt" waste="0pt">
<Markup-margin size="4.5pt"/>
<Layout nx="1" ny="7" x0="4.5pt" y0="4.5pt" dx="198pt" dy="49.5pt"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+890
View File
@@ -0,0 +1,890 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Avery US-Letter products (and look-alikes) -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Avery 3274.1 family: Square stickers, 2_1/2'' x 2_1/2, 9 per sheetx -->
<!-- =================================================================== -->
<Template brand="Avery" part="3274.1" size="US-Letter" _description="Square Labels">
<Meta category="label"/>
<Meta category="square-label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="2.5in" height="2.5in" round="0">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.3125in" y0="1.25in" dx="2.6875in" dy="3in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="3111" equiv="3274.1"/>
<!-- =================================================================== -->
<!-- Avery 3274.2 family: Small round stickers, 1_1/2'', 20 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="3274.2" size="US-Letter" _description="Small Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="0.75in">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="5" x0="0.5in" y0="0.75in" dx="2in" dy="2in"/>
</Label-round>
</Template>
<Template brand="Avery" part="3112" equiv="3274.2"/>
<Template brand="Avery" part="8293" equiv="3274.2"/>
<!-- =================================================================== -->
<!-- Avery 3274.3 family: Large round stickers, 2_1/2'', 9 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="3274.3" size="US-Letter" _description="Large Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.25in">
<Markup-margin size="5"/>
<Layout nx="3" ny="3" x0="0.3125in" y0="1.25in" dx="2.6875in" dy="3in"/>
</Label-round>
</Template>
<!-- =================================================================== -->
<!-- Avery 5026 family: File folder labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="5026" size="US-Letter" _description="File Folder Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="3.4375in" height="0.9375in" round="0.0625in" waste="5pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="9" x0="0.49755in" y0="0.51125in" dx="4.0674in" dy="1.13in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5126 family: Shipping Labels. -->
<!-- =================================================================== -->
<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"/>
<!-- =================================================================== -->
<!-- Avery 5159 family: Address Labels, 1_1/2'' x 4'', 14 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5159" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in" waste="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7" x0="0.15625in" y0="0.25in" dx="4.1875in" dy="1.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5160 family: Address Labels, 2_5/8'' x 1'', 20 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5160" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.15625in" y0="0.5in" dx="2.78125in" dy="1in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5260" equiv="5160"/>
<Template brand="Avery" part="5510" equiv="5160"/>
<Template brand="Avery" part="5520" equiv="5160"/>
<Template brand="Avery" part="5560" equiv="5160"/>
<Template brand="Avery" part="5810" equiv="5160"/>
<Template brand="Avery" part="5920" equiv="5160"/>
<Template brand="Avery" part="5960" equiv="5160"/>
<Template brand="Avery" part="5970" equiv="5160"/>
<Template brand="Avery" part="5971" equiv="5160"/>
<Template brand="Avery" part="5972" equiv="5160"/>
<Template brand="Avery" part="5979" equiv="5160"/>
<Template brand="Avery" part="5980" equiv="5160"/>
<Template brand="Avery" part="6231" equiv="5160"/>
<Template brand="Avery" part="6233" equiv="5160"/>
<Template brand="Avery" part="6245" equiv="5160"/>
<Template brand="Avery" part="6460" equiv="5160"/>
<Template brand="Avery" part="6498" equiv="5160"/>
<Template brand="Avery" part="8160" equiv="5160"/>
<Template brand="Avery" part="8250" equiv="5160"/>
<Template brand="Avery" part="8460" equiv="5160"/>
<Template brand="Avery" part="8560" equiv="5160"/>
<Template brand="Avery" part="8620" equiv="5160"/>
<Template brand="Avery" part="8660" equiv="5160"/>
<Template brand="Avery" part="8810" equiv="5160"/>
<Template brand="Avery" part="8920" equiv="5160"/>
<Template brand="Avery" part="8930" equiv="5160"/>
<Template brand="Avery" part="15160" equiv="5160"/>
<Template brand="Avery" part="18160" equiv="5160"/>
<Template brand="Avery" part="18660" equiv="5160"/>
<Template brand="Avery" part="25160" equiv="5160"/>
<!-- =================================================================== -->
<!-- Avery 5161 family: Address Labels, 1'' x 4'', 20 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5161" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5261" equiv="5161"/>
<Template brand="Avery" part="5961" equiv="5161"/>
<Template brand="Avery" part="8161" equiv="5161"/>
<Template brand="Avery" part="8461" equiv="5161"/>
<Template brand="Avery" part="18161" equiv="5161"/>
<!-- =================================================================== -->
<!-- Avery 5162 family: Address Labels, 1_1/3'' x 4'', 14 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5162" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.333333333in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7"
x0="0.15625in" y0="0.833333333in" dx="4.1875in" dy="1.333333333in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5262" equiv="5162"/>
<Template brand="Avery" part="5512" equiv="5162"/>
<Template brand="Avery" part="5522" equiv="5162"/>
<Template brand="Avery" part="5922" equiv="5162"/>
<Template brand="Avery" part="5962" equiv="5162"/>
<Template brand="Avery" part="8162" equiv="5162"/>
<Template brand="Avery" part="8252" equiv="5162"/>
<Template brand="Avery" part="8462" equiv="5162"/>
<Template brand="Avery" part="8662" equiv="5162"/>
<Template brand="Avery" part="8922" equiv="5162"/>
<Template brand="Avery" part="8932" equiv="5162"/>
<Template brand="Avery" part="15162" equiv="5162"/>
<Template brand="Avery" part="18162" equiv="5162"/>
<Template brand="Avery" part="18662" equiv="5162"/>
<!-- =================================================================== -->
<!-- Avery 5163 family: Shipping Labels, 4'' x 2'', 10 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5163" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5263" equiv="5163"/>
<Template brand="Avery" part="5513" equiv="5163"/>
<Template brand="Avery" part="5523" equiv="5163"/>
<Template brand="Avery" part="5795" equiv="5163"/>
<Template brand="Avery" part="5923" equiv="5163"/>
<Template brand="Avery" part="5963" equiv="5163"/>
<Template brand="Avery" part="5978" equiv="5163"/>
<Template brand="Avery" part="8163" equiv="5163"/>
<Template brand="Avery" part="8253" equiv="5163"/>
<Template brand="Avery" part="8463" equiv="5163"/>
<Template brand="Avery" part="8663" equiv="5163"/>
<Template brand="Avery" part="8763" equiv="5163"/>
<Template brand="Avery" part="8923" equiv="5163"/>
<Template brand="Avery" part="15163" equiv="5163"/>
<Template brand="Avery" part="18163" equiv="5163"/>
<Template brand="Avery" part="18663" equiv="5163"/>
<!-- =================================================================== -->
<!-- Avery 5164 family: Shipping Labels. 4'' x 3_1/3'', 6 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5164" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5264" equiv="5164"/>
<Template brand="Avery" part="5514" equiv="5164"/>
<Template brand="Avery" part="5524" equiv="5164"/>
<Template brand="Avery" part="6464" equiv="5164"/>
<Template brand="Avery" part="6499" equiv="5164"/>
<Template brand="Avery" part="8164" equiv="5164"/>
<Template brand="Avery" part="8254" equiv="5164"/>
<Template brand="Avery" part="8464" equiv="5164"/>
<!-- =================================================================== -->
<!-- Avery 5167 family: Address Labels, 1_3/4'' x 1/2'', 80 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5167" size="US-Letter" _description="Return Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="1.75in" height="0.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5267" equiv="5167"/>
<Template brand="Avery" part="5667" equiv="5167"/>
<Template brand="Avery" part="5927" equiv="5167"/>
<Template brand="Avery" part="6467" equiv="5167"/>
<Template brand="Avery" part="6504" equiv="5167"/>
<Template brand="Avery" part="8167" equiv="5167"/>
<Template brand="Avery" part="8567" equiv="5167"/>
<Template brand="Avery" part="8667" equiv="5167"/>
<Template brand="Avery" part="8927" equiv="5167"/>
<Template brand="Avery" part="15167" equiv="5167"/>
<Template brand="Avery" part="15267" equiv="5167"/>
<Template brand="Avery" part="18167" equiv="5167"/>
<Template brand="Avery" part="18667" equiv="5167"/>
<!-- =================================================================== -->
<!-- Avery 5168 family: Shipping Labels 5'' x 3_1/2'', 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5168" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.5in" height="5in" round="0.0625in" waste="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5193 family: Round Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="5193" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="0.8125in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="6" x0="0.4157in" y0="0.549in" dx="2.0145in" dy="1.6554in"/>
</Label-round>
</Template>
<Template brand="Avery" part="5293" equiv="5193"/>
<!-- =================================================================== -->
<!-- Avery 5194 family: Round Labels, 12 per sheet. -->
<!-- =================================================================== -->
<Template brand="Avery" part="5194" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.25in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/>
</Label-round>
</Template>
<Template brand="Avery" part="5294" equiv="5194"/>
<!-- =================================================================== -->
<!-- Avery 5195 family: Round Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="5195" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.65625in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="3" x0="0.6406in" y0="0.4844in" dx="3.9063in" dy="3.3594in"/>
</Label-round>
</Template>
<Template brand="Avery" part="5295" equiv="5195"/>
<!-- =================================================================== -->
<!-- Avery 5196 family: Diskette Labels, 2_3/4'' x 2_3/4'', 9 per sheetx -->
<!-- =================================================================== -->
<Template brand="Avery" part="5196" size="US-Letter" _description="Diskette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="2.75in" height="2.75in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5096" equiv="5196"/>
<Template brand="Avery" part="5896" equiv="5196"/>
<Template brand="Avery" part="5996" equiv="5196"/>
<Template brand="Avery" part="8196" equiv="5196"/>
<Template brand="Avery" part="8197" equiv="5196"/>
<!-- =================================================================== -->
<!-- Avery 5197 family: Mailing Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="5197" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5305 family: Tent Cards, 2_1/2'' x 8_1/2'', 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5305" size="US-Letter" _description="Tent Cards">
<Meta category="card"/>
<Label-rectangle id="0" width="612pt" height="180pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="27pt"/>
<Layout nx="1" ny="2" x0="0pt" y0="216pt" dx="0pt" dy="360pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5366 family: Filing Labels, 2/3'' x 3_7/16'', 30 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5366" size="US-Letter" _description="Filing Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="3.4375in" height="0.666666667in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="15" x0="0.53125in" y0="0.5in" dx="4in" dy="0.666666667in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5066" equiv="5366"/>
<Template brand="Avery" part="5166" equiv="5366"/>
<Template brand="Avery" part="5266" equiv="5366"/>
<Template brand="Avery" part="5268" equiv="5366"/>
<Template brand="Avery" part="5368" equiv="5366"/>
<Template brand="Avery" part="5378" equiv="5366"/>
<Template brand="Avery" part="5666" equiv="5366"/>
<Template brand="Avery" part="5766" equiv="5366"/>
<Template brand="Avery" part="5866" equiv="5366"/>
<Template brand="Avery" part="5966" equiv="5366"/>
<Template brand="Avery" part="6368" equiv="5366"/>
<Template brand="Avery" part="6466" equiv="5366"/>
<Template brand="Avery" part="6468" equiv="5366"/>
<Template brand="Avery" part="6500" equiv="5366"/>
<Template brand="Avery" part="6505" equiv="5366"/>
<Template brand="Avery" part="6865" equiv="5366"/>
<Template brand="Avery" part="8066" equiv="5366"/>
<Template brand="Avery" part="8166" equiv="5366"/>
<Template brand="Avery" part="8366" equiv="5366"/>
<Template brand="Avery" part="8478" equiv="5366"/>
<!-- =================================================================== -->
<!-- Avery 5371 family: Business Cards, 2'' x 3_1/2'', 10 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5371" size="US-Letter" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="3.5in" height="2in" round="0">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="5" x0="0.75in" y0="0.5in" dx="3.5in" dy="2in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5372" equiv="5371"/>
<Template brand="Avery" part="5376" equiv="5371"/>
<Template brand="Avery" part="5377" equiv="5371"/>
<Template brand="Avery" part="5871" equiv="5371"/>
<Template brand="Avery" part="5872" equiv="5371"/>
<Template brand="Avery" part="5873" equiv="5371"/>
<Template brand="Avery" part="5876" equiv="5371"/>
<Template brand="Avery" part="5877" equiv="5371"/>
<Template brand="Avery" part="5878" equiv="5371"/>
<Template brand="Avery" part="5911" equiv="5371"/>
<Template brand="Avery" part="6235" equiv="5371"/>
<Template brand="Avery" part="8271" equiv="5371"/>
<Template brand="Avery" part="8371" equiv="5371"/>
<Template brand="Avery" part="8372" equiv="5371"/>
<Template brand="Avery" part="8374" equiv="5371"/>
<Template brand="Avery" part="8376" equiv="5371"/>
<Template brand="Avery" part="8377" equiv="5371"/>
<Template brand="Avery" part="8379" equiv="5371"/>
<Template brand="Avery" part="8471" equiv="5371"/>
<Template brand="Avery" part="8476" equiv="5371"/>
<Template brand="Avery" part="8571" equiv="5371"/>
<Template brand="Avery" part="8871" equiv="5371"/>
<Template brand="Avery" part="8872" equiv="5371"/>
<Template brand="Avery" part="8873" equiv="5371"/>
<Template brand="Avery" part="8876" equiv="5371"/>
<Template brand="Avery" part="8877" equiv="5371"/>
<Template brand="Avery" part="8878" equiv="5371"/>
<Template brand="Avery" part="8879" equiv="5371"/>
<Template brand="Avery" part="25371" equiv="5371"/>
<Template brand="Avery" part="26550" equiv="5371"/>
<Template brand="Avery" part="26551" equiv="5371"/>
<Template brand="Avery" part="27870" equiv="5371"/>
<Template brand="Avery" part="27876" equiv="5371"/>
<Template brand="Avery" part="27871" equiv="5371"/>
<Template brand="Avery" part="27881" equiv="5371"/>
<Template brand="Avery" part="27882" equiv="5371"/>
<Template brand="Avery" part="28371" equiv="5371"/>
<Template brand="Avery" part="28876" equiv="5371"/>
<Template brand="Avery" part="28877" equiv="5371"/>
<!-- =================================================================== -->
<!-- Avery 5388 family: Index Cards, 5'' x 3'', 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5388" size="US-Letter" _description="Index Cards">
<Meta category="card"/>
<Label-rectangle id="0" width="5in" height="3in" round="0pt" waste="0pt">
<Markup-margin size="0.125in"/>
<Layout nx="1" ny="3" x0="1.75in" y0="1in" dx="5in" dy="3in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5386" equiv="5388"/>
<Template brand="Avery" part="8388" equiv="5388"/>
<!-- =================================================================== -->
<!-- Avery 5389 family: Post Cards, 6'' x 4'', 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5389" size="US-Letter" _description="Post cards">
<Meta category="card"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="6in" height="4in" round="0pt" waste="0pt">
<Markup-margin size="0.125in"/>
<Layout nx="1" ny="2" x0="1.25in" y0="1.25in" dx="6in" dy="4.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5395 family: Name Badge Labels, 2_1/3'' x 3_3/8'', 8 per sheetx -->
<!-- =================================================================== -->
<Template brand="Avery" part="5395" size="US-Letter" _description="Name Badge Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="3.375in" height="2.333333333in" round="0.1875in" waste="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="4" x0="0.6875in" y0="0.583333333in" dx="3.75in" dy="2.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5095" equiv="5395"/>
<Template brand="Avery" part="5895" equiv="5395"/>
<Template brand="Avery" part="8395" equiv="5395"/>
<Template brand="Avery" part="15395" equiv="5395"/>
<!-- =================================================================== -->
<!-- Avery 5663 family: Mailing Labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="5663" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4.25in" height="2in" round="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 5824 family: CD/DVD Labels (face only), 2 per sheet * -->
<!-- =================================================================== -->
<Template brand="Avery" part="5824" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="144pt" y0="36pt" dx="351pt" dy="396pt"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Avery 5931 family: CD/DVD Labels (face only), 2 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5931-Disc" size="US-Letter"
_description="CD/DVD Labels (Disc Labels)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in">
<Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
<Markup-line x1="3.125in" y1="2.3125in" x2="4.625in" y2="2.3125in"/>
<Markup-line x1="2.3125in" y1="0" x2="2.3125in" y2="1.5in"/>
<Markup-line x1="2.3125in" y1="3.125in" x2="2.3125in" y2="4.625in"/>
<Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="0" dy="5in"/>
</Label-cd>
</Template>
<Template brand="Avery" part="5691-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="5692-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="5694-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="5698-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="6692-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8536-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8691-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8692-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8694-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8695-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8699-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8831-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8832-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8842-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8844-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8846-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8847-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8931-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8941-Disc" equiv="5931-Disc"/>
<Template brand="Avery" part="8942-Disc" equiv="5931-Disc"/>
<!-- =================================================================== -->
<!-- Avery 5931 family: CD/DVD Labels (spine only), 4 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="5931-Spine" size="US-Letter"
_description="CD/DVD Labels (Spine Labels)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="0.21875in" height="4.6875in" round="0.0625in" waste="0.0625in">
<Layout nx="2" ny="2" x0="0.5in" y0="0.734375in" dx="0.46875in" dy="4.84375in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5691-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="5692-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="5694-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="5698-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="6692-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8536-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8691-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8692-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8694-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8695-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8699-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8831-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8832-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8842-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8844-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8846-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8847-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8931-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8941-Spine" equiv="5931-Spine"/>
<Template brand="Avery" part="8942-Spine" equiv="5931-Spine"/>
<!-- =================================================================== -->
<!-- Avery 5997face family: VCR Labels, 1_7/8'' x 3_1/16'', 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5997-Face" size="US-Letter"
_description="Video Tape Face Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="220" height="133" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5199-Face" equiv="5997-Face"/>
<!-- =================================================================== -->
<!-- Avery 5997spine family: VCR Labels, 2/3'' x 5_3/4'',15 per sheet -->
<!-- =================================================================== -->
<Template brand="Avery" part="5997-Spine" size="US-Letter"
_description="Video Tape Spine Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="414" height="48" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="15" x0="99" y0="36" dx="0" dy="48"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="5199-Spine" equiv="5997-Spine"/>
<!-- =================================================================== -->
<!-- Avery 6490 family: Diskette Labels, 2_11/16'' x 2'', 15 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="6490" size="US-Letter" _description="Diskette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="2.6875in" height="2in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="5" x0="0.125in" y0="0.5in" dx="2.78125in" dy="2in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="6501" equiv="6490"/>
<Template brand="Avery" part="6861" equiv="6490"/>
<Template brand="Avery" part="8096" equiv="6490"/>
<!-- =================================================================== -->
<!-- Avery 6570 family: ID Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6570" size="US-Letter" _description="ID Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="126pt" height="90pt" round="4.464pt" x_waste="6.768pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="4" ny="8" x0="36pt" y0="36pt" dx="139.536pt" dy="90pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 6573 family: Shipping Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6573" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="8.12992in" height="5in" round="0.0625in" waste="0">
<Markup-margin size="0.0625in"/>
<Layout nx="1" ny="2" x0="0.18504in" y0="0.5in" dx="0" dy="5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 6871 family: Shipping Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6871" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.375in" height="1.25in" round="0.0625in" waste="0.125in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="6" x0="0.3725in" y0="1.125in" dx="2.69in" dy="1.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 6873 family: Shipping Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6873" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="2.0in" round="0.0625in" waste="0.125">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="4" x0="0.375in" y0="1.125in" dx="4.0in" dy="2.25in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 6874 family: Shipping Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="6874" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="3.0in" round="0.0625in" waste="0.125">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="3" x0="0.375in" y0="0.625in" dx="4.0in" dy="3.375in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 6879 family: Address Labels, 1_1/4'' x 3_3/4'', 12 per sheetx -->
<!-- =================================================================== -->
<Template brand="Avery" part="6879" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="1.25in" round="0.0625in" waste="5pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.375in" y0="1.125in" dx="4in" dy="1.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="8769" equiv="6879"/>
<!-- =================================================================== -->
<!-- Avery 8165 family: Full-page label, 8_1/2'' x 11'', 1 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="8165" size="US-Letter" _description="Full Sheet Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="8.5in" height="11.in" round="0">
<Markup-margin size="0.0625in"/>
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="3114" equiv="8165"/>
<Template brand="Avery" part="3121" equiv="8165"/>
<Template brand="Avery" part="3123" equiv="8165"/>
<Template brand="Avery" part="3131" equiv="8165"/>
<Template brand="Avery" part="3132" equiv="8165"/>
<Template brand="Avery" part="3133" equiv="8165"/>
<Template brand="Avery" part="3141" equiv="8165"/>
<Template brand="Avery" part="3142" equiv="8165"/>
<Template brand="Avery" part="3145" equiv="8165"/>
<Template brand="Avery" part="3245" equiv="8165"/>
<Template brand="Avery" part="3246" equiv="8165"/>
<Template brand="Avery" part="3247" equiv="8165"/>
<Template brand="Avery" part="3255" equiv="8165"/>
<Template brand="Avery" part="3267" equiv="8165"/>
<Template brand="Avery" part="3270" equiv="8165"/>
<Template brand="Avery" part="3271" equiv="8165"/>
<Template brand="Avery" part="3272" equiv="8165"/>
<Template brand="Avery" part="3275" equiv="8165"/>
<Template brand="Avery" part="3276" equiv="8165"/>
<Template brand="Avery" part="3277" equiv="8165"/>
<Template brand="Avery" part="3614" equiv="8165"/>
<Template brand="Avery" part="3625" equiv="8165"/>
<Template brand="Avery" part="3641" equiv="8165"/>
<Template brand="Avery" part="3651" equiv="8165"/>
<Template brand="Avery" part="5165" equiv="8165"/>
<Template brand="Avery" part="5177" equiv="8165"/>
<Template brand="Avery" part="5182" equiv="8165"/>
<Template brand="Avery" part="5265" equiv="8165"/>
<Template brand="Avery" part="5277" equiv="8165"/>
<Template brand="Avery" part="5282" equiv="8165"/>
<Template brand="Avery" part="5884" equiv="8165"/>
<Template brand="Avery" part="5975" equiv="8165"/>
<Template brand="Avery" part="6465" equiv="8165"/>
<Template brand="Avery" part="6503" equiv="8165"/>
<Template brand="Avery" part="8255" equiv="8165"/>
<Template brand="Avery" part="8314" equiv="8165"/>
<Template brand="Avery" part="8324" equiv="8165"/>
<Template brand="Avery" part="8384" equiv="8165"/>
<Template brand="Avery" part="8465" equiv="8165"/>
<Template brand="Avery" part="8665" equiv="8165"/>
<Template brand="Avery" part="53205" equiv="8165"/>
<Template brand="Avery" part="53211" equiv="8165"/>
<Template brand="Avery" part="53230" equiv="8165"/>
<Template brand="Avery" part="53240" equiv="8165"/>
<Template brand="Avery" part="75287" equiv="8165"/>
<Template brand="Avery" part="75299" equiv="8165"/>
<!-- =================================================================== -->
<!-- Avery 8195 family: Return address labels -->
<!-- =================================================================== -->
<Template brand="Avery" part="8195" size="US-Letter" _description="Return Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="1.75in" height="0.666in" round="0.063in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/>
<Layout nx="4" ny="15" x0="0.297in" y0="0.531in" dx="2.031in" dy="0.666in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Avery 8373 family: Business Cards, 2'' x 3_1/2'', 8 per sheet x -->
<!-- =================================================================== -->
<Template brand="Avery" part="8373" size="US-Letter" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="3.5in" height="2in" round="0" waste="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="4" x0="0.5in" y0="0.75in" dx="4in" dy="2.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="3612" equiv="8373"/>
<Template brand="Avery" part="5881" equiv="8373"/>
<Template brand="Avery" part="8869" equiv="8373"/>
<Template brand="Avery" part="28373" equiv="8373"/>
<!-- =================================================================== -->
<!-- Avery 8960 family: CD/DVD Labels. -->
<!-- =================================================================== -->
<Template brand="Avery" part="8960" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5pt" hole="14.1732pt" waste="9.07087pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="138.898pt" y0="50.1732pt" dx="351.142pt" dy="360pt"/>
</Label-cd>
</Template>
<!-- ******************************************************************** -->
<!-- Avery labels in tech builitin 152 -->
<!-- http://www.avery.com/help/tech_bulletin.jsp?tech_bull_code=152 -->
<!-- ******************************************************************** -->
<Template brand="Avery" part="LSK-8" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="1.13in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="4" ny="20" x0="0.5in" y0="0.5in" dx="2.13in" dy="0.5in"/>
</Label-rectangle>
</Template>
<!-- the LSK labels can be torn in half down the center -->
<Template brand="Avery" part="LSK-8.5" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="1" width="1.13in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="20" x0="0.5in" y0="0.5in" dx="2.13in" dy="0.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="LSK-5" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="2" width="1.75in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="4" ny="20" x0="0.5in" y0="0.3in" dx="2.05in" dy="0.5in"/>
</Label-rectangle>
</Template>
<!-- the LSK labels can be torn in half down the center -->
<Template brand="Avery" part="LSK-5.5" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="3" width="1.75in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="20" x0="0.5in" y0="0.3in" dx="2.05in" dy="0.5in"/>
</Label-rectangle>
</Template>
<Template brand="Avery" part="LSK-3" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="4" width="3.13in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="20" x0="0.5in" y0="0.5in" dx="4.38in" dy="0.5in"/>
</Label-rectangle>
</Template>
<!-- the LSK labels can be torn in half down the center -->
<Template brand="Avery" part="LSK-3.5" size="US-Letter" _description="Divider Labels">
<Meta category="label"/>
<Label-rectangle id="5" width="3.13in" height="0.5in" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="20" x0="0.5in" y0="0.5in" dx="4.38in" dy="0.5in"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+65
View File
@@ -0,0 +1,65 @@
<?xml version="1.0"?>
<Glabels-templates>
<!--
*********************************************************************
*********************************************************************
Labels for the Brother QL-500/550/650 PC Label Printers
These templates work with the Brother Linux Printer CUPS Driver. It
is unknown if these work correctly with the foomatic print driver for
these printers.
One difference from typical templates is that the template size is
not the actual media size - it is the size of the printable area,
which is smaller than the media size. This is because (at least with
the Brother driver) coordinates are relative the corner of this area.
*********************************************************************
*********************************************************************
-->
<Template brand="Brother" part="DK-11201" size="Other" width="25.91mm" height="83.90mm" _description="Standard Address Labels 29mm x 90mm">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://brother.ally.de/product/de/Etikettendrucker/Brother-DK-11201-QL-Adress-Etiketten-29x90-mm-Standard.html"/>
<Label-rectangle id="0" width="25.91mm" height="83.90mm" round="0" x_waste="0" y_waste="0">
<Markup-rect x1="-1.5mm" y1="-3mm" w="29mm" h="90mm" r="1.5mm" />
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<Template brand="Brother" part="DK-11202" size="Other" width="58.93mm" height="93.20mm" _description="Shipping Labels 62mm x 100mm">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://brother.ally.de/product/de/Etikettendrucker/Brother-DK-11202-QL-Versand-Etiketten-62x100-mm.html"/>
<Label-rectangle id="0" width="58.93mm" height="93.20mm" round="0" x_waste="0" y_waste="0">
<Markup-rect x1="-1.5mm" y1="-3mm" w="62mm" h="100mm" r="1.5mm" />
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<Template brand="Brother" part="DK-11204" size="Other" width="13.97mm" height="47.92mm" _description="Multi Purpose Labels 17mm x 54mm">
<Meta category="label"/>
<Meta product_url="http://brother.ally.de/product/de/Etikettendrucker/Brother-DK-11204-QL-Mehrzweck-Etiketten-17x54-mm.html"/>
<Label-rectangle id="0" width="13.97mm" height="47.92mm" round="0" x_waste="0" y_waste="0">
<Markup-rect x1="-1.5mm" y1="-3mm" w="17mm" h="54mm" r="1.5mm" />
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<Template brand="Brother" part="DK-11208" size="Other" width="34.91mm"
height="83.90mm" _description="Standard Address Labels 38mm x 90mm">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://brother.ally.de/product/de/Etikettendrucker/Brother-DK-11208-QL-Adress-Etiketten-38x90-mm-gross.html"/>
<Label-rectangle id="0" width="34.91mm" height="83.90mm" round="0"
x_waste="0" y_waste="0">
<Markup-rect x1="-1.5mm" y1="-3mm" w="38mm" h="90mm" r="1.5mm" />
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<Glabels-categories>
<Category id="label" _name="Any label"/>
<Category id="round-label" _name="Round labels"/>
<Category id="elliptical-label" _name="Elliptical labels"/>
<Category id="square-label" _name="Square labels"/>
<Category id="rectangle-label" _name="Rectangular labels"/>
<Category id="card" _name="Any card"/>
<Category id="business-card" _name="Business cards"/>
<Category id="media" _name="CD/DVD or other media"/>
<Category id="mail" _name="Mailing/shipping products"/>
<Category id="foldable" _name="Foldable cards"/>
<Category id="photo" _name="Photo products"/>
</Glabels-categories>
+100
View File
@@ -0,0 +1,100 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- =================================================================== -->
<!-- DATA BECKER: Business Cards, 50 x 90 mm, 10 per sheet -->
<!-- =================================================================== -->
<!-- TODO: What is the actual part #? -->
<Template brand="DataBecker" part="BC?" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="255" height="142" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="36" y0="69.890" dx="255" dy="142"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Data Becker CD/DVD Labels (face only), 2 per sheet -->
<!-- ===================================================================-->
<Template brand="DataBecker" part="0335" size="A4" _description="CD/DVD Labels Standard Format (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="164.409" hole="58.1102" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="133.228" y0="46.7716" dx="0" dy="419.527"/>
</Label-cd>
</Template>
<Template brand="DataBecker" part="0368" equiv="0335"/>
<!-- =================================================================== -->
<!-- DATA BECKER 0491 Business Cards, 50 x 90 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="DataBecker" part="0491" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="90mm" height="50mm" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="12.5mm" y0="15mm" dx="94.55mm" dy="54mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- DATA BECKER 0526 Address Labels. -->
<!-- =================================================================== -->
<Template brand="DataBecker" part="0526" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="198.425pt" height="102.047pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="3" ny="8" x0="3.93386e-16pt" y0="15.5906pt" dx="198.425pt" dy="102.047pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- DATA BECKER 0562 CD Labels. -->
<!-- =================================================================== -->
<Template brand="DataBecker" part="0562" size="A4" _description="CD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58mm" hole="20.6375mm" waste="2mm">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="5mm" y0="5mm" dx="120mm" dy="171mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="90mm" dx="120mm" dy="120mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- DATA BECKER 0598 Address Labels. -->
<!-- =================================================================== -->
<Template brand="DataBecker" part="0598" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="274.961pt" height="119.906pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="2" ny="6" x0="23.2441pt" y0="65.1968pt" dx="274.961pt" dy="119.906pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- DATA BECKER 0599 Rectangular Labels. -->
<!-- =================================================================== -->
<Template brand="DataBecker" part="0599" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+101
View File
@@ -0,0 +1,101 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ************************* -->
<!-- -->
<!-- Dataline -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Dataline 12426: CD/DVD labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="12426" size="A4" _description="CD/DVD labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="59.5mm" hole="20.6375mm" waste="3.175mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="45.5mm" y0="20.5mm" dx="125.35mm" dy="137mm"/>
</Label-cd>
</Template>
<Template brand="Dataline" part="12427" equiv="12426"/>
<!-- =================================================================== -->
<!-- Dataline 57125: Business Cards, 54.0 x 86.0 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57125" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="86.00mm" height="54.00mm" round="0">
<Markup-margin size="0mm"/>
<Layout nx="2" ny="5" x0="16mm" y0="11mm" dx="91mm" dy="55.625mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dataline 57126: Business Cards, 90.0 x 50.8 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57126" size="A4" _description="Business cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="90mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="21.5mm" dx="90mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dataline 57127: Membership Cards, 86.0 x 54.0 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57127" size="A4" _description="Membership cards">
<Meta category="card"/>
<Label-rectangle id="0" width="86mm" height="54mm" round="0mm" x_waste="2.5mm" y_waste="0.7mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="20.5mm" y0="10.5mm" dx="91mm" dy="55.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dataline 57130: Shipping Labels, 199.6 x 289.1 mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57130" size="A4" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="199.6mm" height="289.1mm" round="0mm" x_waste="2mm" y_waste="2mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="5.2mm" y0="3.95mm" dx="203.6mm" dy="293.1mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dataline 57131: Shipping Labels, 199.6 x 143.5 mm, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57131" size="A4" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="199.6mm" height="143.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="5.2mm" y0="5mm" dx="199.6mm" dy="143.5mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dataline 57132: Shipping Labels, 99.1 x 139 mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="Dataline" part="57132" size="A4" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="139mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="5.4mm" y0="9.5mm" dx="99.1mm" dy="139mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+101
View File
@@ -0,0 +1,101 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- DECAdry A4 products. -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- Decadry templates for Microsoft Word are available from the URL: -->
<!-- http://195.13.14.169/en/freetemplates.htm -->
<!-- =================================================================== -->
<!-- DECAdry DLW-1731: Mailing labels, 63.5 x 38.1 mm, 21 per sheet -->
<!-- =================================================================== -->
<Template brand="DECAdry" part="DLW-1731" size="A4" _description="Mailing labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="181.4" height="108.0" round="5">
<Markup-margin size="5"/>
<Layout nx="3" ny="7" x0="21.2" y0="43.9" dx="187.2" dy="108.0"/>
</Label-rectangle>
</Template>
<Template brand="DECAdry" part="OLW-4731" equiv="DLW-1731"/>
<Template brand="DECAdry" part="OLW-7131" equiv="DLW-1731"/>
<!-- =================================================================== -->
<!-- DECAdry DLW-1734: Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="DECAdry" part="DLW-1734" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="99.1mm" height="67.7mm" round="2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="4" x0="4.65mm" y0="13.1mm" dx="101.5mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<Template brand="DECAdry" part="OLW-4734" equiv="DLW-1734"/>
<!-- =================================================================== -->
<!-- DECAdry DLW-1786: Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="DECAdry" part="DLW-1786" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="105mm" height="39mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="12mm" dx="105mm" dy="39mm"/>
</Label-rectangle>
</Template>
<Template brand="DECAdry" part="OLW-4786" equiv="DLW-1786"/>
<!-- =================================================================== -->
<!-- DECAdry DLW-1787: Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="DECAdry" part="DLW-1787" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="70mm" height="35mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="8.5mm" dx="70mm" dy="35mm"/>
</Label-rectangle>
</Template>
<Template brand="DECAdry" part="OLW-4787" equiv="DLW-1787"/>
<!-- =================================================================== -->
<!-- DECAdry OCC-3342 Business Cards. -->
<!-- =================================================================== -->
<Template brand="DECAdry" part="OCC-3342" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="240.945pt" height="153.071pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="2" ny="5" x0="42.5197pt" y0="38.2677pt" dx="269.291pt" dy="153.071pt"/>
</Label-rectangle>
</Template>
<Template brand="DECAdry" part="OCB-3327" equiv="OCC-3342"/>
<Template brand="DECAdry" part="SCW-2090" equiv="OCC-3342"/>
<Template brand="DECAdry" part="DAW-327" equiv="OCC-3342"/>
</Glabels-templates>
+33
View File
@@ -0,0 +1,33 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Desmat products -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- ============================================================ -->
<!-- Desmat A4ST-3CD - CD Labels, 3 per sheet -->
<!-- ============================================================ -->
<Template brand="Desmat" part="A4ST-3CD" size="A4" _description="CD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="9mm"/>
<!-- <Layout nx="1" ny="2" x0="9mm" y0="9.5mm" dx="120mm" dy="166.5mm"/>
<Layout nx="1" ny="1" x0="91mm" y0="93mm" 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>
</Template>
</Glabels-templates>
+88
View File
@@ -0,0 +1,88 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- =================================================================== -->
<!-- Dymo 99012 Large Address labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="99012" size="Other" width="102.047pt" height="252.283pt" _description="Large Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="102.047pt" height="252.283pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="102.047pt" dy="252.283pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 99010 Address labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="99010" size="Other" width="81pt" height="252pt" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="81pt" height="252pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="81pt" dy="252pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 11355 Return Address labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="11355" size="Other" width="54pt" height="144pt" _description="Return Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="54pt" height="144pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="54pt" dy="144pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 99014 Shipping Address labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="99014" size="Other" width="167pt" height="288pt" _description="Shipping Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="167pt" height="288pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="167pt" dy="288pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 30327 File Folder labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="30327" size="Other" width="41pt" height="248pt" _description="File Folder">
<Meta category="label"/>
<Label-rectangle id="0" width="41pt" height="248pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="41pt" dy="248pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 30376 Hanging Folder labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="30376" size="Other" width="41pt" height="144pt" _description="Hanging Folder">
<Meta category="label"/>
<Label-rectangle id="0" width="41pt" height="144pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="41pt" dy="144pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Dymo 30258 3.5" Disk labels. -->
<!-- =================================================================== -->
<Template brand="Dymo" part="30258" size="Other" width="153pt" height="198pt" _description="3.5in Diskette">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="153pt" height="198pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="1" x0="0pt" y0="0pt" dx="153pt" dy="198pt"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+763
View File
@@ -0,0 +1,763 @@
<?xml version="1.0"?>
<Glabels-templates>
<Template brand="Endisch" part="6500012x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="13" ny="18" x0="9mm" y0="15mm" dx="15mm" dy="15mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500020x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="8" ny="12" x0="16.25mm" y0="14.75mm" dx="22.5mm" dy="22.5mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500024x" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="12mm" waste="0.6mm">
<Layout nx="7" ny="10" x0="12mm" y0="15mm" dx="27mm" dy="27mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500030x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="6" ny="8" x0="8.75mm" y0="19.75mm" dx="32.5mm" dy="32.5mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500040x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500050x" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="25mm" waste="0.2mm">
<Layout nx="4" ny="5" x0="3.5mm" y0="21.5mm" dx="51mm" dy="51mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500060x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="3" ny="4" x0="mm8" y0="18mm" dx="67mm" dy="67mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6406342x" size="A4" _description="Elliptical labels">
<Meta category="label"/>
<Meta category="elliptical-label"/>
<Label-ellipse id="0" width="63.5mm" height="42.3mm" waste="0.8mm">
<Layout nx="3" ny="6" x0="7.21mm" y0="11mm" dx="66.04mm" dy="46.54mm"/>
</Label-ellipse>
</Template>
<Template brand="Endisch" part="6500067x" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="33.75mm" waste="mm">
<Layout nx="3" ny="4" x0="1.75mm" y0="8.25mm" dx="69.5mm" dy="71mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500080x" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="40mm" waste="1.5mm">
<Layout nx="2" ny="3" x0="20mm" y0="18.5mm" dx="90mm" dy="90mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500085x" size="A4" _description="Round labels">
<Meta category="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">
<Layout nx="2" ny="3" x0="15mm" y0="11mm" dx="95mm" dy="95mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6500095x" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="47.5mm" waste="0.4mm">
<Layout nx="2" ny="3" x0="7.5mm" y0="4mm" dx="100mm" dy="97mm"/>
</Label-round>
</Template>
<Template brand="Endisch" part="6400080x" size="A4" _description="Elliptical labels">
<Meta category="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">
<Layout nx="2" ny="5" x0="15mm" y0="11mm" dx="100mm" dy="57mm"/>
</Label-ellipse>
</Template>
<Template brand="Endisch" part="6502015x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="20mm" height="15mm" round="1.5mm" x_waste="0.8mm" y_waste="0.8mm">
<Layout nx="8" ny="15" x0="14.5mm" y0="15mm" dx="23mm" dy="18mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6502020x" size="A4" _description="Square labels">
<Meta category="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">
<Layout nx="9" ny="14" x0="15mm" y0="8.5mm" dx="20mm" dy="20mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6502510x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="25.4mm" height="10mm" round="1.5mm" x_waste="0.5mm" y_waste="0mm">
<Layout nx="7" ny="27" x0="8.48mm" y0="13.5mm" dx="27.94mm" dy="10mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6502719x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="7" ny="14" x0="8.75mm" y0="15.15mm" dx="27.5mm" dy="19.05mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6503333x" size="A4" _description="Square labels">
<Meta category="label"/>
<Meta category="square-label"/>
<Label-rectangle id="0" width="33mm" height="33mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="6" ny="8" x0="6mm" y0="16.5mm" dx="33mm" dy="33mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6503821x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="5" ny="13" x0="10mm" y0="10.7mm" dx="38mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6404034x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="40mm" height="34mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="4" ny="8" x0="10mm" y0="12.5mm" dx="50mm" dy="34mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6504816x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="4" ny="16" x0="8mm" y0="13.3mm" dx="48.5mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6504825x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="4" ny="11" x0="8mm" y0="8.8mm" dx="48.5mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6505050x" size="A4" _description="Square labels">
<Meta category="label"/>
<Meta category="square-label"/>
<Label-rectangle id="0" width="50mm" height="50mm" round="2mm" x_waste="1mm" y_waste="1mm">
<Layout nx="3" ny="5" x0="25mm" y0="13.5mm" dx="55mm" dy="55mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6505221x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="4" ny="14" x0="0mm" y0="0mm" dx="52.5mm" dy="21.214mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6505225x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="4" ny="11" x0="0mm" y0="8.8mm" dx="52.5mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6505229x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="4" ny="10" x0="0mm" y0="0mm" dx="52.5mm" dy="29.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6405334x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="13mm" y0="12.5mm" dx="65.5mm" dy="34mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="640638x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="32" x0="7.21mm" y0="12.5mm" dx="66.04mm" dy="8.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6406329x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63mm" height="29.67mm" round="2mm" x_waste="0.8mm" y_waste="0mm">
<Layout nx="3" ny="9" x0="7.21mm" y0="14.985mm" dx="66.04mm" dy="29.67mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6406333x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="33.9mm" round="3mm" x_waste="0.8mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="7.21mm" y0="12.9mm" dx="66.04mm" dy="33.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6406338x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="38.1mm" round="3mm" x_waste="0.8mm" y_waste="0mm">
<Layout nx="3" ny="7" x0="7.21mm" y0="15.15mm" dx="66.04mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6406346x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="46.6mm" round="3mm" x_waste="0.8mm" y_waste="0mm">
<Layout nx="3" ny="6" x0="7.21mm" y0="8.7mm" dx="66.04mm" dy="46.6mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6506433x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="8.1mm" y0="13.3mm" dx="64.6mm" dy="33.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6406634x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="4mm" y0="12.5mm" dx="68mm" dy="34mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507016x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="17" x0="0mm" y0="4.85mm" dx="70mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507025x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="11" x0="0mm" y0="8.8mm" dx="70mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507029x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="10" x0="0mm" y0="0mm" dx="70mm" dy="29.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507032x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="9" x0="0mm" y0="4.5mm" dx="70mm" dy="32mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507033x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="0mm" y0="13.3mm" dx="70mm" dy="33.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507035x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="0mm" y0="8.5mm" dx="70mm" dy="35mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507036x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="0mm" y0="4.5mm" dx="70mm" dy="36mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507037x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="8" x0="0mm" y0="0mm" dx="70mm" dy="37.125mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507041x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="7" x0="0mm" y0="5mm" dx="70mm" dy="41mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507042x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="7" x0="0mm" y0="0mm" dx="70mm" dy="42.428mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507050x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="5" x0="0mm" y0="21.5mm" dx="70mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6507067x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="3" ny="4" x0="0mm" y0="13.1mm" dx="70mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6408232x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="8" x0="16mm" y0="20.5mm" dx="96mm" dy="32mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6408252x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="5" x0="16mm" y0="18.5mm" dx="96mm" dy="52mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409039x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="90mm" height="39mm" round="2mm" x_waste="1.5mm" y_waste="0mm">
<Layout nx="2" ny="7" x0="10mm" y0="12mm" dx="100mm" dy="39mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409595x" size="A4" _description="Square labels">
<Meta category="label"/>
<Meta category="square-label"/>
<Label-rectangle id="0" width="95mm" height="95mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Layout nx="2" ny="3" x0="7.5mm" y0="6mm" dx="100mm" dy="95mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409616x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="16" x0="7.75mm" y0="13.3mm" dx="98.5mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6509711x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="97mm" height="11mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="25" x0="8mm" y0="11mm" dx="97mm" dy="11mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6509742x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="6" x0="8mm" y0="21.6mm" dx="97mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6509767x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="4" x0="8mm" y0="13.1mm" dx="97mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409852x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="5" x0="5mm" y0="18.5mm" dx="102mm" dy="52mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409933x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="33.9mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="4.63mm" y0="12.9mm" dx="101.64mm" dy="33.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409938x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="38.1mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="7" x0="4.63mm" y0="15.15mm" dx="101.64mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409942x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="42.3mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="6" x0="4.63mm" y0="21.6mm" dx="101.64mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409957x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="57mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="5" x0="4.63mm" y0="6mm" dx="101.64mm" dy="57mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409963x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="63.5mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="4.63mm" y0="21.5mm" dx="101.64mm" dy="63.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6409967x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="67.7mm" round="3mm" x_waste="0.7mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="4.63mm" y0="13.1mm" dx="101.64mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510150x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="5" x0="3.4mm" y0="21.5mm" dx="101.6mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510533x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="8" x0="0mm" y0="13.3mm" dx="105mm" dy="33.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510537x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="8" x0="0mm" y0="0mm" dx="105mm" dy="37.125mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510541x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510542x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="7" x0="0mm" y0="0mm" dx="105mm" dy="42.428mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510548x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="6" x0="0mm" y0="4.5mm" dx="105mm" dy="48mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510557x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="5" x0="0mm" y0="6mm" dx="105mm" dy="57mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510570x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="4" x0="0mm" y0="8.5mm" dx="105mm" dy="70mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510572x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="4" x0="0mm" y0="9mm" dx="105mm" dy="72mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510574x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="4" x0="0mm" y0="0mm" dx="105mm" dy="74.25mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510514x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="2" x0="0mm" y0="9mm" dx="105mm" dy="144mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6510518x" size="A4" _description="Labels A6">
<Meta category="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">
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6414498x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="2" ny="2" x0="5mm" y0="4.5mm" dx="102mm" dy="144mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6414720x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="1" ny="13" x0="31.35mm" y0="18.5mm" dx="147.3mm" dy="20mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6519038x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="1" ny="7" x0="9mm" y0="15.5mm" dx="192mm" dy="38mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6519061x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="1" ny="4" x0="9mm" y0="26.5mm" dx="192mm" dy="61mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6520029x" size="A4" _description="Rectangular labels">
<Meta category="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">
<Layout nx="1" ny="1" x0="10mm" y0="0mm" dx="200mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6521074x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="74.25mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="4" x0="0mm" y0="0mm" dx="210mm" dy="74.25mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6521099x" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="99mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="3" x0="0mm" y0="0mm" dx="210mm" dy="99mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6521018x" size="A4" _description="Labels A5">
<Meta category="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">
<Layout nx="1" ny="2" x0="0mm" y0="0mm" dx="210mm" dy="148.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="6521029x" size="A4" _description="Labels A4">
<Meta category="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">
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="65420297" size="A3" _description="Labels A3">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="297mm" height="420mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="297mm" dy="420mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="SRA3450320" size="SRA3" _description="Labels SRA3">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="320mm" height="450mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="320mm" dy="450mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="B104147A5" size="A5" _description="Labels A4">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="148mm" height="105mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="2" x0="0mm" y0="0mm" dx="148mm" dy="105mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="B200147A5" size="A5" _description="Labels A4">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="148mm" height="200mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="10mm" y0="0mm" dx="148mm" dy="200mm"/>
</Label-rectangle>
</Template>
<Template brand="Endisch" part="B210148A5" size="A5" _description="Labels A4">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="148mm" height="210mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="148mm" dy="210mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+418
View File
@@ -0,0 +1,418 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ************************* -->
<!-- -->
<!-- Geha -->
<!-- -->
<!-- ************************* -->
<!-- Geha provides a PDF file with all the relevant data for creating template -->
<!-- files. It is available from the following link: -->
<!-- http://www.geha.de/fileadmin/images/druckerzubehoer/downloads/Formatvorlagen.pdf -->
<!-- =================================================================== -->
<!-- Geha P10. Foldable Flyer Paper. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P10" size="A4" _description="Flyer paper">
<Meta category="card"/>
<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">
<Markup-margin size="0mm"/>
<Markup-line x1="0mm" y1="99mm" x2="210mm" y2="99mm"/>
<Markup-line x1="0mm" y1="198mm" x2="210mm" y2="198mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha P68. Business Cards. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P68" size="A4" _description="Business cards">
<Meta category="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">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="4" x0="15mm" y0="13mm" dx="95mm" dy="72mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P69" equiv="P68"/>
<!-- =================================================================== -->
<!-- Geha P70. Business Cards. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P70" size="A4" _description="Business cards">
<Meta category="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">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="13.5mm" dx="95mm" dy="54mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P71" equiv="P70"/>
<Template brand="Geha" part="P72" equiv="P70"/>
<Template brand="Geha" part="P73" equiv="P70"/>
<!-- =================================================================== -->
<!-- Geha P76. Greeting Cards. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P76" size="A4" _description="Greeting cards">
<Meta category="card"/>
<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">
<Markup-margin size="0mm"/>
<Markup-line x1="0mm" y1="148.5mm" x2="210mm" y2="148.5mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P77" equiv="P76"/>
<!-- =================================================================== -->
<!-- Geha P78. Greeting Cards. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P78" size="A4" _description="Greeting cards">
<Meta category="card"/>
<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">
<Markup-margin size="0mm"/>
<Markup-line x1="82.5mm" y1="0mm" x2="82.5mm" y2="121mm"/>
<Layout nx="1" ny="2" x0="23mm" y0="25mm" dx="211mm" dy="126mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P79" equiv="P78"/>
<!-- =================================================================== -->
<!-- Geha P80. Arch File inserts. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P80" size="A4" _description="Arch File inserts">
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="5" x0="11mm" y0="28.5mm" dx="210mm" dy="48mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha P81. Arch File inserts. -->
<!-- =================================================================== -->
<Template brand="Geha" part="P81" size="A4" _description="Arch File inserts">
<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">
<Markup-margin size="2mm"/>
<Layout nx="1" ny="9" x0="11mm" y0="31.5mm" dx="210mm" dy="26mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z20. CD/DVD Labels and inlet. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z20-1" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="46.5mm" y0="21.5mm" dx="137mm" dy="137mm"/>
</Label-cd>
</Template>
<Template brand="Geha" part="Z21-1" equiv="Z20-1"/>
<Template brand="Geha" part="Z20-2" size="A4" _description="CD/DVD Inlet">
<Meta category="label"/>
<Meta category="media"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="44.25mm" y0="164mm" dx="151.5mm" dy="117.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="Z21-2" equiv="Z20-2"/>
<!-- =================================================================== -->
<!-- Geha Z22. CD/DVD Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z22" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="21.5mm" dx="123.35mm" dy="137mm"/>
</Label-cd>
</Template>
<Template brand="Geha" part="Z23" equiv="Z22"/>
<!-- =================================================================== -->
<!-- Geha Z24. DVD inlets. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z24" size="A4" _description="DVD inlet">
<Meta category="card"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="13.5mm" y0="13.5mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z25-1. Video Tape Spine Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z25-1" size="A4" _description="Video Tape Spine Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="2mm"/>
<Layout nx="1" ny="13" x0="31.38mm" y0="18.4mm" dx="147.32mm" dy="20mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z25-2. Video Tape Face Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z25-2" size="A4" _description="Video Tape Face Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="6" x0="25mm" y0="8.7mm" dx="81.38mm" dy="46.6mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z40. Photo Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z40" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="0mm"/>
<Layout nx="2" ny="2" x0="13.6mm" y0="19.3mm" dx="94mm" dy="131.23mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P40" equiv="Z40"/>
<!-- =================================================================== -->
<!-- Geha Z41. Photo Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z41" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="30mm" y0="24.2mm" dx="210mm" dy="148mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P41" equiv="Z41"/>
<!-- =================================================================== -->
<!-- Geha Z45. Photo Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z45" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="16mm" y0="18.4mm" dx="210mm" dy="145.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="P45" equiv="Z45"/>
<!-- =================================================================== -->
<!-- Geha Z46. Passport Photo Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z46" size="A4" _description="Passport photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="0mm"/>
<Layout nx="4" ny="5" x0="20mm" y0="20mm" dx="45mm" dy="53mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z50. Large Address Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z50" size="A4" _description="Large Address Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="5.2mm" y0="4.7mm" dx="210mm" dy="298.45mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z51. Medium Address Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z51" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="4.7mm" y0="10mm" dx="101.64mm" dy="139mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z52. Address Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z52" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="4" x0="4.7mm" y0="13.8mm" dx="101.6mm" dy="67.73mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z53. Address Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z53" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="3mm" y0="15.9mm" dx="101.6mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z54. Address Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z54" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<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">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="7" x0="7.2mm" y0="15.9mm" dx="66.04mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z80. Arch File Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z80" size="A4" _description="Arch File Labels">
<Meta category="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">
<Markup-margin size="3.175mm"/>
<Markup-line x1="172mm" y1="0mm" x2="172mm" y2="61mm"/>
<Layout nx="1" ny="4" x0="9mm" y0="26.4mm" dx="192mm" dy="61mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="Z88" equiv="Z80"/>
<!-- =================================================================== -->
<!-- Geha Z81. Arch File Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z81" size="A4" _description="Arch File Labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Markup-line x1="172mm" y1="0mm" x2="172mm" y2="38mm"/>
<Layout nx="1" ny="7" x0="9mm" y0="15.4mm" dx="192mm" dy="38mm"/>
</Label-rectangle>
</Template>
<Template brand="Geha" part="Z89" equiv="Z81"/>
<!-- =================================================================== -->
<!-- Geha Z90. Multi-Purpose Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z90" size="A4" _description="Multi-Purpose Labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="9" x0="7.2mm" y0="15.1mm" dx="66.04mm" dy="29.63mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z91. Multi-Purpose Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z91" size="A4" _description="Multi-Purpose Labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="12" x0="9.8mm" y0="21.4mm" dx="48.26mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Geha Z92. Multi-Purpose Labels. -->
<!-- =================================================================== -->
<Template brand="Geha" part="Z92" size="A4" _description="Multi-Purpose Labels">
<Meta category="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">
<Markup-margin size="1mm"/>
<Layout nx="7" ny="27" x0="8.5mm" y0="13.4mm" dx="27.94mm" dy="10mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+466
View File
@@ -0,0 +1,466 @@
<!--
glabels-3.0.dtd
This file is a part of the glabels template database.
Copyright (c) 2001-2009 Jim Evins
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
-->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- ENTITIES: primitive types used in element attributes -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- primitives -->
<!ENTITY % BOOLEAN_TYPE "(False | True | 0 | 1)">
<!ENTITY % STRING_TYPE "CDATA">
<!ENTITY % LENGTH_TYPE "CDATA"> <!-- %g (pt|in|mm|cm|pc) -->
<!ENTITY % INT_TYPE "CDATA"> <!-- %d | 0x%x | 0%o -->
<!ENTITY % UINT_TYPE "CDATA"> <!-- %u | 0x%x | 0%o -->
<!ENTITY % FLOAT_TYPE "CDATA"> <!-- %g -->
<!-- Text related enumerations/types -->
<!ENTITY % JUSTIFY_TYPE "(Left | Right | Center)">
<!ENTITY % VALIGN_TYPE "(Top | Bottom | Center)">
<!ENTITY % FONT_WEIGHT_TYPE "(Regular | Bold)">
<!-- Barcode related enumerations/types -->
<!ENTITY % BC_BACKEND_TYPE "CDATA">
<!-- one of:
"(built-in |
gnu-barcode |
zint |
libiec16022 |
libqrencode")
-->
<!ENTITY % BC_STYLE_TYPE "CDATA">
<!-- one of:
"(POSTNET |
POSTNET-5 |
POSTNET-9 |
POSTNET-11 |
CEPNET |
EAN |
EAN-8 |
EAN-8+2 |
EAN-8+5 |
EAN-13 |
EAN-13+2 |
EAN-13+5 |
UPC |
UPC-A |
UPC-A+2 |
UPC-A+5 |
UPC-E |
UPC-E+2 |
UPC-E+5 |
ISBN |
ISBN+5 |
Code39 |
Code128 |
Code128C |
Code128B |
I25 |
CBR |
MSI |
PLS |
IEC16022)"
-->
<!-- Data encoding method -->
<!ENTITY % DATA_ENCODING_TYPE "(None | Base64)">
<!-- Inline file format type -->
<!ENTITY % FILE_FORMAT_TYPE "(SVG)">
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Top-level glabels paper data base -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Glabels-paper-sizes (Paper-size*)>
<!ATTLIST Glabels-paper-sizes
xmlns %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Top-level glabels categories data base -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Glabels-categories (Category*)>
<!ATTLIST Glabels-categories
xmlns %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Top-level glabels vendors data base -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Glabels-vendors (Vendor*)>
<!ATTLIST Glabels-vendors
xmlns %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Top-level glabels template data base -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Glabels-templates (Template*)>
<!ATTLIST Glabels-templates
xmlns %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Top-level glabels document -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Glabels-document (Template, Objects+, Merge?, Data*)>
<!ATTLIST Glabels-document
xmlns %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Paper size -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Paper-size EMPTY>
<!ATTLIST Paper-size
id %STRING_TYPE; #REQUIRED
name %STRING_TYPE; #IMPLIED
_name %STRING_TYPE; #IMPLIED
pwg_size %STRING_TYPE; #REQUIRED
width %LENGTH_TYPE; #REQUIRED
height %LENGTH_TYPE; #REQUIRED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Category -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Category EMPTY>
<!ATTLIST Category
id %STRING_TYPE; #REQUIRED
name %STRING_TYPE; #IMPLIED
_name %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Vendor -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Vendor EMPTY>
<!ATTLIST Vendor
name %STRING_TYPE; #REQUIRED
url %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Template Section -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ENTITY % label_element "Label-rectangle | Label-round | Label-ellipse | Label-cd">
<!ENTITY % markup_element "Markup-margin | Markup-line | Markup-circle | Markup-rect | Markup-ellipse">
<!ELEMENT Template (Meta*, (%label_element;)*)>
<!ATTLIST Template
brand %STRING_TYPE; #REQUIRED
part %STRING_TYPE; #REQUIRED
name %STRING_TYPE; #IMPLIED
equiv %STRING_TYPE; #IMPLIED
size %STRING_TYPE; #IMPLIED
width %LENGTH_TYPE; #IMPLIED
height %LENGTH_TYPE; #IMPLIED
description %STRING_TYPE; #IMPLIED
_description %STRING_TYPE; #IMPLIED
>
<!ELEMENT Meta EMPTY>
<!ATTLIST Meta
product_url %STRING_TYPE; #IMPLIED
category %STRING_TYPE; #IMPLIED
print %STRING_TYPE; #IMPLIED
>
<!ELEMENT Label-rectangle ((%markup_element;)*, Layout+)>
<!ATTLIST Label-rectangle
id %STRING_TYPE; #REQUIRED
width %LENGTH_TYPE; #REQUIRED
height %LENGTH_TYPE; #REQUIRED
round %LENGTH_TYPE; "0 pt"
waste %LENGTH_TYPE; #IMPLIED
x_waste %LENGTH_TYPE; #IMPLIED
y_waste %LENGTH_TYPE; #IMPLIED
>
<!ELEMENT Label-round ((%markup_element;)*, Layout+)>
<!ATTLIST Label-round
id %STRING_TYPE; #REQUIRED
radius %LENGTH_TYPE; #REQUIRED
waste %LENGTH_TYPE; #IMPLIED
>
<!ELEMENT Label-ellipse ((%markup_element;)*, Layout+)>
<!ATTLIST Label-ellipse
id %STRING_TYPE; #REQUIRED
width %LENGTH_TYPE; #REQUIRED
height %LENGTH_TYPE; #REQUIRED
waste %LENGTH_TYPE; #IMPLIED
>
<!ELEMENT Label-cd ((%markup_element;)*, Layout+)>
<!ATTLIST Label-cd
id %STRING_TYPE; #REQUIRED
radius %LENGTH_TYPE; #REQUIRED
hole %LENGTH_TYPE; #REQUIRED
width %LENGTH_TYPE; #IMPLIED
height %LENGTH_TYPE; #IMPLIED
waste %LENGTH_TYPE; #IMPLIED
>
<!ELEMENT Markup-margin EMPTY>
<!ATTLIST Markup-margin
size %LENGTH_TYPE; #REQUIRED
>
<!ELEMENT Markup-line EMPTY>
<!ATTLIST Markup-line
x1 %LENGTH_TYPE; #REQUIRED
y1 %LENGTH_TYPE; #REQUIRED
x2 %LENGTH_TYPE; #REQUIRED
y2 %LENGTH_TYPE; #REQUIRED
>
<!ELEMENT Markup-circle EMPTY>
<!ATTLIST Markup-circle
x0 %LENGTH_TYPE; #REQUIRED
y0 %LENGTH_TYPE; #REQUIRED
radius %LENGTH_TYPE; #REQUIRED
>
<!ELEMENT Markup-rect EMPTY>
<!ATTLIST Markup-rect
x1 %LENGTH_TYPE; #REQUIRED
y1 %LENGTH_TYPE; #REQUIRED
w %LENGTH_TYPE; #REQUIRED
h %LENGTH_TYPE; #REQUIRED
r %LENGTH_TYPE; "0 pt"
>
<!ELEMENT Markup-ellipse EMPTY>
<!ATTLIST Markup-ellipse
x1 %LENGTH_TYPE; #REQUIRED
y1 %LENGTH_TYPE; #REQUIRED
w %LENGTH_TYPE; #REQUIRED
h %LENGTH_TYPE; #REQUIRED
>
<!ELEMENT Layout EMPTY>
<!ATTLIST Layout
nx %UINT_TYPE; #REQUIRED
ny %UINT_TYPE; #REQUIRED
x0 %LENGTH_TYPE; "0 pt"
y0 %LENGTH_TYPE; "0 pt"
dx %LENGTH_TYPE; "0 pt"
dy %LENGTH_TYPE; "0 pt"
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Objects Section -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ENTITY % object_class_element "Object-text |
Object-box |
Object-line |
Object-ellipse |
Object-image |
Object-barcode"
>
<!ELEMENT Objects ((%object_class_element;)*)>
<!ATTLIST Objects
id %STRING_TYPE; #REQUIRED
rotate %BOOLEAN_TYPE; #REQUIRED
>
<!ENTITY % position_attrs
"x %LENGTH_TYPE; #REQUIRED
y %LENGTH_TYPE; #REQUIRED"
>
<!ENTITY % size_attrs
"w %LENGTH_TYPE; #REQUIRED
h %LENGTH_TYPE; #REQUIRED"
>
<!ENTITY % line_attrs
"line_width %LENGTH_TYPE; #IMPLIED
line_color %UINT_TYPE; #IMPLIED
line_color_field %STRING_TYPE; #IMPLIED"
>
<!ENTITY % fill_attrs
"fill_color %UINT_TYPE; #IMPLIED
fill_color_field %STRING_TYPE; #IMPLIED"
>
<!ENTITY % affine_attrs
"a0 %FLOAT_TYPE; #IMPLIED
a1 %FLOAT_TYPE; #IMPLIED
a2 %FLOAT_TYPE; #IMPLIED
a3 %FLOAT_TYPE; #IMPLIED
a4 %FLOAT_TYPE; #IMPLIED
a5 %FLOAT_TYPE; #IMPLIED"
>
<!ENTITY % shadow_attrs
"shadow %BOOLEAN_TYPE; #IMPLIED
shadow_x %FLOAT_TYPE; #IMPLIED
shadow_y %FLOAT_TYPE; #IMPLIED
shadow_color %UINT_TYPE; #IMPLIED
shadow_opacity %FLOAT_TYPE; #IMPLIED"
>
<!ELEMENT Object-text (Span)>
<!ATTLIST Object-text
%position_attrs;
%size_attrs;
justify %JUSTIFY_TYPE; #REQUIRED
valign %VALIGN_TYPE; #REQUIRED
auto_shrink %BOOLEAN_TYPE; #IMPLIED
%affine_attrs;
%shadow_attrs;
>
<!ELEMENT Object-box EMPTY>
<!ATTLIST Object-box
%position_attrs;
%size_attrs;
%line_attrs;
%fill_attrs;
%affine_attrs;
%shadow_attrs;
>
<!ELEMENT Object-ellipse EMPTY>
<!ATTLIST Object-ellipse
%position_attrs;
%size_attrs;
%line_attrs;
%fill_attrs;
%affine_attrs;
%shadow_attrs;
>
<!ELEMENT Object-line EMPTY>
<!ATTLIST Object-line
%position_attrs;
dx %LENGTH_TYPE; #REQUIRED
dy %LENGTH_TYPE; #REQUIRED
%line_attrs;
%affine_attrs;
%shadow_attrs;
>
<!ELEMENT Object-image EMPTY>
<!ATTLIST Object-image
%position_attrs;
%size_attrs;
src %STRING_TYPE; #IMPLIED
field %STRING_TYPE; #IMPLIED
embed %BOOLEAN_TYPE; #IMPLIED
%affine_attrs;
%shadow_attrs;
>
<!ELEMENT Object-barcode EMPTY>
<!ATTLIST Object-barcode
%position_attrs;
%size_attrs;
backend %BC_BACKEND_TYPE; #REQUIRED
style %BC_STYLE_TYPE; #REQUIRED
text %BOOLEAN_TYPE; #REQUIRED
checksum %BOOLEAN_TYPE; #REQUIRED
color %UINT_TYPE; #IMPLIED
color_field %STRING_TYPE; #IMPLIED
data %STRING_TYPE; #IMPLIED
field %STRING_TYPE; #IMPLIED
format %UINT_TYPE; #IMPLIED
%affine_attrs;
%shadow_attrs;
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Merge Section -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ELEMENT Merge EMPTY>
<!ATTLIST Merge
type %STRING_TYPE; #REQUIRED
src %STRING_TYPE; #IMPLIED
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Data Section -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ENTITY % data_element "Pixdata | File">
<!ELEMENT Data (%data_element;)*>
<!-- Inline Pixdata -->
<!ELEMENT Pixdata (#PCDATA)>
<!ATTLIST Pixdata
name %STRING_TYPE; #REQUIRED
encoding %DATA_ENCODING_TYPE; "Base64"
>
<!-- Inline File -->
<!ELEMENT File (#PCDATA)>
<!ATTLIST File
name %STRING_TYPE; #REQUIRED
format %FILE_FORMAT_TYPE; "SVG"
>
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Text elements -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ENTITY % text_element "#PCDATA | Span | Field | NL">
<!ELEMENT Span (%text_element;)*>
<!ATTLIST Span
font_family %STRING_TYPE; #IMPLIED
font_size %LENGTH_TYPE; #IMPLIED
font_weight %FONT_WEIGHT_TYPE; #IMPLIED
font_italic %BOOLEAN_TYPE; #IMPLIED
color %UINT_TYPE; #IMPLIED
color_field %STRING_TYPE; #IMPLIED
line_spacing %LENGTH_TYPE; #IMPLIED
>
<!ELEMENT Field EMPTY>
<!ATTLIST Field
name %STRING_TYPE; #REQUIRED
>
<!ELEMENT NL EMPTY>
+378
View File
@@ -0,0 +1,378 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ******************************************************************** -->
<!-- Hama products. -->
<!-- ******************************************************************** -->
<!-- ==================================================================== -->
<!-- Hama 50150. Printable mousepad. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50150" size="A4" _description="Printable mousepad">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="189.5mm" height="249.4mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="10mm" y0="23.8mm" dx="199.5mm" dy="259.4mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50151. Round labels 40mm. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50151" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="20mm" waste="3mm">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="6" x0="16mm" y0="16mm" dx="46mm" dy="46.5mm"/>
</Label-round>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50390. Photo labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50390" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="photo"/>
<Label-rectangle id="0" width="130mm" height="90mm" round="0mm" x_waste="40mm" y_waste="27.5mm">
<Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="40mm" y0="30.1mm" dx="210mm" dy="150mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50392" equiv="50390"/>
<!-- ==================================================================== -->
<!-- Hama 50393. Photo labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50391" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="photo"/>
<Label-rectangle id="0" width="151mm" height="100mm" round="0mm" x_waste="25mm" y_waste="24mm">
<Markup-margin size="0mm"/>
<Layout nx="1" ny="2" x0="29mm" y0="24mm" dx="201mm" dy="149mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50393" equiv="50391"/>
<!-- ==================================================================== -->
<!-- Hama 50400. Business cards. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50400" size="A4" _description="Business cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85mm" height="55mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="13.5mm" y0="10.5mm" dx="95mm" dy="55mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50401" equiv="50400"/>
<Template brand="Hama" part="50405" equiv="50400"/>
<Template brand="Hama" part="50410" equiv="50400"/>
<Template brand="Hama" part="50415" equiv="50400"/>
<!-- ==================================================================== -->
<!-- Hama 50402. Business cards. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50402" size="A4" _description="Business cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="81mm" height="50.8mm" round="0mm" x_waste="8mm" y_waste="2mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="16mm" y0="14.5mm" dx="97mm" dy="54.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50403" equiv="50402"/>
<!-- ==================================================================== -->
<!-- Hama 50430. CD inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50430" size="A4" _description="CD inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="119.5mm" height="119.5mm" round="0mm" x_waste="10mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="45mm" y0="29.5mm" dx="139.5mm" dy="119.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50431" equiv="50430"/>
<!-- ==================================================================== -->
<!-- Hama 50432. CD inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50432-1" size="A4" _description="CD inlet (front)">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="151mm" height="121mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Markup-line x1="30mm" y1="0mm" x2="30mm" y2="121mm"/>
<Layout nx="1" ny="1" x0="30mm" y0="29.5mm" dx="151mm" dy="121mm"/>
</Label-rectangle>
</Template>
<Template brand="Hama" part="50432-2" size="A4" _description="CD inlet (back)">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="151mm" height="117.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/>
<Markup-line x1="6.5mm" y1="0mm" x2="6.5mm" y2="117.5mm"/>
<Markup-line x1="144.5mm" y1="0mm" x2="144.5mm" y2="117.5mm"/>
<Markup-rect x1="9.5mm" y1="3mm" w="132mm" h="111.5mm"/>
<Layout nx="1" ny="1" x0="30mm" y0="160mm" dx="151mm" dy="117.5mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50434. Zip disc inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50434" size="A4" _description="Zip disc inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="100mm" height="200mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-line x1="0mm" y1="10mm" x2="100mm" y2="10mm"/>
<Markup-line x1="0mm" y1="18mm" x2="100mm" y2="18mm"/>
<Markup-line x1="0mm" y1="116mm" x2="100mm" y2="116mm"/>
<Markup-rect x1="3mm" y1="21mm" w="94mm" h="92mm"/>
<Markup-rect x1="3mm" y1="119mm" w="94mm" h="78mm"/>
<Markup-margin size="0mm"/>
<Layout nx="1" ny="1" x0="55mm" y0="47.5mm" dx="100mm" dy="200mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50435. DVD inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50435" size="A4" _description="DVD inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="184mm" height="275mm" round="0mm" x_waste="5mm" y_waste="5mm">
<Markup-line x1="0mm" y1="130.5mm" x2="184mm" y2="130.5mm"/>
<Markup-line x1="0mm" y1="144.5mm" x2="184mm" y2="144.5mm"/>
<Markup-margin size="0mm"/>
<Layout nx="1" ny="1" x0="13mm" y0="12.5mm" dx="194mm" dy="285mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50436. VHS-C inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50436" size="A4" _description="VHS-C inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="98.5mm" height="91.5mm" round="0mm" x_waste="20mm" y_waste="20mm">
<Markup-margin size="0mm"/>
<Markup-line x1="15.5mm" y1="0mm" x2="15.5mm" y2="91.5mm"/>
<Markup-line x1="38.5mm" y1="0mm" x2="38.5mm" y2="91.5mm"/>
<Layout nx="1" ny="2" x0="55.75mm" y0="28.5mm" dx="138.5mm" dy="148.5mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50437. Video-8 inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50437" size="A4" _description="Video-8 inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="155mm" height="98.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/>
<Markup-line x1="16mm" y1="0mm" x2="16mm" y2="98.5mm"/>
<Markup-line x1="32mm" y1="0mm" x2="32mm" y2="98.5mm"/>
<Markup-line x1="95mm" y1="0mm" x2="95mm" y2="98.5mm"/>
<Layout nx="1" ny="2" x0="23mm" y0="22.5mm" dx="155mm" dy="153.5mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50438. VHS inlets. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50438" size="A4" _description="VHS inlet">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="189.5mm" height="256mm" round="0mm" x_waste="10.25mm" y_waste="20.5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="10.25mm" y0="20.5mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50440. Foldable Greeting cards. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50440" size="A4" _description="Greeting cards">
<Meta category="card"/>
<Meta category="foldable"/>
<Label-rectangle id="0" width="210mm" height="145mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Markup-line x1="105mm" y1="0mm" x2="105mm" y2="145mm"/>
<Layout nx="1" ny="2" x0="0mm" y0="0mm" dx="210mm" dy="145mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50450. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50450" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="0mm" dx="70mm" dy="37mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50452. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50452" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="25.4mm" height="25.4mm" round="0mm" x_waste="2.5mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="6" ny="11" x0="15.8mm" y0="9mm" dx="30.4mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50455. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50455" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50460. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50460" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50465. Diskette labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50465" size="A4" _description="Diskette labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="70mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="5" x0="0mm" y0="21mm" dx="70mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50470. Zip disc labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50470" size="A4" _description="Zip disc labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="50mm" height="50mm" round="0mm" x_waste="5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="5" x0="13.8mm" y0="23.8mm" dx="61.2mm" dy="50mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50475. CD/DVD labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50475" size="A4" _description="CD/DVD labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58.7mm" hole="19.5mm" waste="10mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46mm" y0="16mm" dx="137.4mm" dy="147.8mm"/>
</Label-cd>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50480. Arch File labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50480" size="A4" _description="Arch File Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="190mm" height="38mm" round="0mm" x_waste="10mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="7" x0="10mm" y0="16mm" dx="210mm" dy="38mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50485. Arch File labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50485" size="A4" _description="Arch File labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="190mm" height="58mm" round="0mm" x_waste="10mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="5" x0="10mm" y0="3.5mm" dx="210mm" dy="58mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50505. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50505" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50515. Rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50515" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148.5mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50517. 1" Square labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50517" size="A4" _description="Square labels">
<Meta category="label"/>
<Meta category="square-label"/>
<Label-rectangle id="0" width="25.4mm" height="25.4mm" round="0mm" x_waste="2.5mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="6" ny="11" x0="16.2mm" y0="8.8mm" dx="30.42mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<!-- ==================================================================== -->
<!-- Hama 50520. Mini Disc labels. -->
<!-- ==================================================================== -->
<Template brand="Hama" part="50520-1" size="A4" _description="Mini Disc labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="52.5mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="4" ny="8" x0="0mm" y0="0mm" dx="52.5mm" dy="37mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+408
View File
@@ -0,0 +1,408 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Herma A4 products. -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Data Becker Etiketten Paket: Ordnerrucken, 6 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4283" size="A4" _description="Arch File Labels (small)">
<Meta category="label"/>
<Label-rectangle id="0" width="544.252" height="110.551" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="6" x0="25.5118" y0="32.5984" dx="544.252" dy="133.228"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="5090" equiv="4283"/>
<Template brand="Herma" part="5091" equiv="4283"/>
<!-- =================================================================== -->
<!-- Data Becker Etiketten Paket: Ordnerrucken, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4284" size="A4" _description="Arch File Labels (large)">
<Meta category="label"/>
<Label-rectangle id="0" width="544.252" height="174.331" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="4" x0="25.5118" y0="38.2677" dx="544.252" dy="197.008"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="5095" equiv="4284"/>
<Template brand="Herma" part="5096" equiv="4284"/>
<!-- =================================================================== -->
<!-- Herma Musteretiketten: Ordnerrucken, 192 x 38 mm, 7 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4293" size="A4" _description="Arch File Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="544.252" height="107.716" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="7" x0="25.5118" y0="42.5197" dx="544.252" dy="107.716"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="5092" equiv="4293"/>
<!-- =================================================================== -->
<!-- Herma 4464: Mailing Labels - 3 columns, 70 x 37.125 mm, 24 per sheet-->
<!-- =================================================================== -->
<Template brand="Herma" part="4464" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="199" height="105" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="8" x0="0" y0="0" dx="199" dy="105"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Otto Versand: Allzweck Etiketten, 38 x 21,2 mm, 65 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4606" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="107.716" height="60.0945" round="0">
<Markup-margin size="5"/>
<Layout nx="5" ny="13" x0="26.9291" y0="29.7638" dx="107.716" dy="60.0945"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4270" equiv="4606"/>
<!-- =================================================================== -->
<!-- Herma Musteretiketten: Allzweck Etiketten, 48,3 x 16,9 mm -->
<!-- =================================================================== -->
<Template brand="Herma" part="4607" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="136.913" height="47.9055" round="0">
<Markup-margin size="5"/>
<Layout nx="4" ny="16" x0="24.0945" y0="39.6853" dx="136.913" dy="47.9055"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4271" equiv="4607"/>
<!-- =================================================================== -->
<!-- Herma Musteretiketten: Allzweck Etiketten, 44 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4102" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="136.913" height="72" round="0">
<Markup-margin size="5"/>
<Layout nx="4" ny="11" x0="24.0945" y0="24.0945" dx="136.913" dy="72"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4109" equiv="4102"/>
<Template brand="Herma" part="4112" equiv="4102"/>
<Template brand="Herma" part="4272" equiv="4102"/>
<Template brand="Herma" part="4357" equiv="4102"/>
<Template brand="Herma" part="4608" equiv="4102"/>
<Template brand="Herma" part="4680" equiv="4102"/>
<Template brand="Herma" part="4690" equiv="4102"/>
<Template brand="Herma" part="4812" equiv="4102"/>
<Template brand="Herma" part="5051" equiv="4102"/>
<Template brand="Herma" part="8631" equiv="4102"/>
<Template brand="Herma" part="8835" equiv="4102"/>
<Template brand="Herma" part="8961" equiv="4102"/>
<Template brand="Herma" part="8971" equiv="4102"/>
<Template brand="Herma" part="8981" equiv="4102"/>
<Template brand="Herma" part="10801" equiv="4608"/>
<!-- =================================================================== -->
<!-- Herma Musteretiketten: Allzweck Etiketten, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4614" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="187.086" height="95.811" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="8" x0="16.1575" y0="36.8504" dx="187.086" dy="95.811"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4670" equiv="4614"/>
<Template brand="Herma" part="5053" equiv="4614"/>
<!-- =================================================================== -->
<!-- Herma 4620: Mailing Labels - 2 columns, 107 x 37 mm, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4620" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="298" height="105" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="8" x0="0" y0="0" dx="298" dy="105"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Herma Musteretiketten: Adress Etiketten, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4625" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="297.638" height="119.905" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="7" x0="0" y0="0" dx="297.638" dy="119.905"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4674" equiv="4625"/>
<Template brand="Herma" part="5057" equiv="4625"/>
<!-- =================================================================== -->
<!-- Data Becker Etiketten Paket: Video Etiketten, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4828" size="A4" _description="Video Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="223.086" height="131.811" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="6" x0="38.5512" y0="24.9449" dx="295.086" dy="131.811"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="5070" equiv="4828"/>
<!-- =================================================================== -->
<!-- Herma 4093: CD/DVD Labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4093" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="164.409pt" hole="58.1102pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="133.228pt" y0="46.7717pt" dx="346.819pt" dy="419.528pt"/>
</Label-cd>
</Template>
<Template brand="Herma" part="4094" equiv="4093"/>
<Template brand="Herma" part="4374" equiv="4093"/>
<Template brand="Herma" part="4471" equiv="4093"/>
<Template brand="Herma" part="4699" equiv="4093"/>
<Template brand="Herma" part="4818" equiv="4093"/>
<Template brand="Herma" part="4849" equiv="4093"/>
<Template brand="Herma" part="4850" equiv="4093"/>
<Template brand="Herma" part="4914" equiv="4093"/>
<Template brand="Herma" part="5079" equiv="4093"/>
<Template brand="Herma" part="5083" equiv="4093"/>
<Template brand="Herma" part="5084" equiv="4093"/>
<Template brand="Herma" part="5085" equiv="4093"/>
<Template brand="Herma" part="5086" equiv="4093"/>
<Template brand="Herma" part="5115" equiv="4093"/>
<Template brand="Herma" part="8624" equiv="4093"/>
<Template brand="Herma" part="8625a" equiv="4093"/>
<Template brand="Herma" part="8683" equiv="4093"/>
<Template brand="Herma" part="8740" equiv="4093"/>
<Template brand="Herma" part="8885" equiv="4093"/>
<Template brand="Herma" part="8900" equiv="4093"/>
<Template brand="Herma" part="8928" equiv="4093"/>
<Template brand="Herma" part="8943" equiv="4093"/>
<Template brand="Herma" part="8968" equiv="4093"/>
<Template brand="Herma" part="8975" equiv="4093"/>
<Template brand="Herma" part="8984" equiv="4093"/>
<Template brand="Herma" part="8994" equiv="4093"/>
<!-- =================================================================== -->
<!-- Data Becker Etiketten Paket: Disketten Etiketten, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="8803" size="A4" _description="Diskette Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="198.425" height="144" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="60.9448" y0="60.9448" dx="270.425" dy="144"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="8839" equiv="8803"/>
<!-- =================================================================== -->
<!-- Herma 4457: Superprint Labels 105mm x 48mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4457" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="48mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="6" x0="0mm" y0="5.5mm" dx="105mm" dy="48mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Herma 10809: Superprint Labels 105mm x 148mm, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="10809" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Herma 4097: Rectangular Labels 45.72mm x 21.2mm, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4097" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="45.72mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="12" x0="10mm" y0="22mm" dx="48.72mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4221" equiv="4097"/>
<Template brand="Herma" part="4232" equiv="4097"/>
<Template brand="Herma" part="4235" equiv="4097"/>
<Template brand="Herma" part="4346" equiv="4097"/>
<Template brand="Herma" part="4366" equiv="4097"/>
<Template brand="Herma" part="4367" equiv="4097"/>
<Template brand="Herma" part="4368" equiv="4097"/>
<Template brand="Herma" part="4369" equiv="4097"/>
<Template brand="Herma" part="8864" equiv="4097"/>
<Template brand="Herma" part="8940" equiv="4097"/>
<Template brand="Herma" part="8965" equiv="4097"/>
<Template brand="Herma" part="9531" equiv="4097"/>
<Template brand="Herma" part="10004" equiv="4097"/>
<!-- =================================================================== -->
<!-- Herma 4098: Rectangular Labels 63.5mm x 29.6mm, 27 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4098" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="29.6mm" round="0mm" x_waste="1.5mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="9" x0="7.8mm" y0="15.5mm" dx="66.5mm" dy="29.6mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4222" equiv="4098"/>
<Template brand="Herma" part="4233" equiv="4098"/>
<Template brand="Herma" part="4347" equiv="4098"/>
<Template brand="Herma" part="4418" equiv="4098"/>
<Template brand="Herma" part="4419" equiv="4098"/>
<Template brand="Herma" part="4864" equiv="4098"/>
<Template brand="Herma" part="5045" equiv="4098"/>
<Template brand="Herma" part="5140" equiv="4098"/>
<Template brand="Herma" part="5141" equiv="4098"/>
<Template brand="Herma" part="5142" equiv="4098"/>
<Template brand="Herma" part="5143" equiv="4098"/>
<Template brand="Herma" part="8865" equiv="4098"/>
<Template brand="Herma" part="8966" equiv="4098"/>
<Template brand="Herma" part="10006" equiv="4098"/>
<Template brand="Herma" part="10300" equiv="4098"/>
<!-- =================================================================== -->
<!-- Herma 4099: Rectangular Labels 96mm x 50.8mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4099" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96mm" height="50.8mm" round="0mm" x_waste="1.5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="8mm" y0="21.5mm" dx="99mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4223" equiv="4099"/>
<Template brand="Herma" part="4349" equiv="4099"/>
<Template brand="Herma" part="4667" equiv="4099"/>
<Template brand="Herma" part="8653" equiv="4099"/>
<Template brand="Herma" part="8806" equiv="4099"/>
<Template brand="Herma" part="8845" equiv="4099"/>
<Template brand="Herma" part="8893" equiv="4099"/>
<Template brand="Herma" part="8967" equiv="4099"/>
<Template brand="Herma" part="10013" equiv="4099"/>
<Template brand="Herma" part="10307" equiv="4099"/>
<!-- =================================================================== -->
<!-- Herma 4100: Rectangular Labels 30.48mm x 16.93mm, 96 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4100" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="30.48mm" height="16.93mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="6" ny="16" x0="7.5mm" y0="18.5mm" dx="32.9mm" dy="16.93mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4110" equiv="4100"/>
<Template brand="Herma" part="8832" equiv="4100"/>
<!-- =================================================================== -->
<!-- Herma 4101: Rectangular Labels 43.2mm x 10.3mm, 88 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4101" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="43.2mm" height="10.3mm" round="0mm" x_waste="0mm" y_waste="1mm">
<Markup-margin size="1.5mm"/>
<Layout nx="4" ny="22" x0="18.6mm" y0="10.5mm" dx="43.2mm" dy="12.65mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4111" equiv="4101"/>
<!-- =================================================================== -->
<!-- Herma 4103: Rectangular Labels 63.5mm x 38.1mm, 21 per sheet -->
<!-- =================================================================== -->
<Template brand="Herma" part="4103" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63.5mm" height="38.1mm" round="0mm" x_waste="1.5mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="7" x0="6.75mm" y0="15.5mm" dx="66.5mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<Template brand="Herma" part="4113" equiv="4103"/>
<Template brand="Herma" part="4641b" equiv="4103"/>
<Template brand="Herma" part="4677" equiv="4103"/>
<Template brand="Herma" part="4904" equiv="4103"/>
<Template brand="Herma" part="5074" equiv="4103"/>
<Template brand="Herma" part="8632" equiv="4103"/>
<Template brand="Herma" part="8650" equiv="4103"/>
<Template brand="Herma" part="8680" equiv="4103"/>
<Template brand="Herma" part="8801" equiv="4103"/>
<Template brand="Herma" part="8838" equiv="4103"/>
<Template brand="Herma" part="8890" equiv="4103"/>
<Template brand="Herma" part="9600" equiv="4103"/>
<Template brand="Herma" part="9621" equiv="4103"/>
<Template brand="Herma" part="9661" equiv="4103"/>
<Template brand="Herma" part="10007" equiv="4103"/>
<Template brand="Herma" part="10301" equiv="4103"/>
<Template brand="Herma" part="10802" equiv="4103"/>
</Glabels-templates>
+247
View File
@@ -0,0 +1,247 @@
<?xml version="1.0"?>
<Glabels-templates>
<Template brand="Igepa" part="EA-381x212" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="38.1mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="5" ny="13" x0="9.75mm" y0="10.7mm" dx="38.1mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-483x169" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="48.3mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="16" x0="8.4mm" y0="13.3mm" dx="48.3mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-485x254" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="48.5mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="4" ny="10" x0="8mm" y0="21.5mm" dx="48.5mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-525x297" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-646x338" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x254" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x320" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x350" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x360" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x370" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="3" ny="8" x0="0mm" y0="0.5mm" dx="70mm" dy="37mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x410" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x423" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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="0.45mm" dx="70mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x508" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-700x677" size="A4" _description="Floppy disk labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Meta category="media"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-965x423" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96.5mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="6" x0="8.5mm" y0="21.6mm" dx="96.5mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-965x677" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96.5mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="8.5mm" y0="13.1mm" dx="96.5mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x350" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="35mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="0mm" y0="8.5mm" dx="105mm" dy="35mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x370" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="8" x0="0mm" y0="0.5mm" dx="105mm" dy="37mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x410" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x423" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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="0.45mm" dx="105mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x480" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x570" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x700" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x740" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="74mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="4" x0="0mm" y0="0.5mm" dx="105mm" dy="74mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1050x1480" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="2" ny="2" x0="0mm" y0="0.5mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-2100x1480" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="2" x0="0mm" y0="0.5mm" dx="210mm" dy="148mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-2100x2970" size="A4" _description="Labels A4">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1900x380W" size="A4" _description="Lever Arch File Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="192mm" height="38mm" round="2.5mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="7" x0="9mm" y0="15.5mm" dx="192mm" dy="38mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-1900x610W" size="A4" _description="Lever Arch File Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="192mm" height="61mm" round="2.5mm" x_waste="0mm" y_waste="0mm">
<Layout nx="1" ny="4" x0="9mm" y0="26.5mm" dx="192mm" dy="61mm"/>
</Label-rectangle>
</Template>
<Template brand="Igepa" part="EA-CD-ROM2Q" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58.5mm" hole="20.5mm" waste="0mm">
<Layout nx="1" ny="2" x0="46.5mm" y0="21.5mm" dx="117mm" dy="137mm"/>
</Label-cd>
</Template>
</Glabels-templates>
+611
View File
@@ -0,0 +1,611 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ******************************************************************** -->
<!-- JAC products. -->
<!-- ******************************************************************** -->
<!-- ==================================================================== -->
<!-- JAC CD label sheet with rectangular labels. -->
<!-- ==================================================================== -->
<Template brand="JAC" part="987349-1" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58mm" hole="20.8mm" waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="5.5mm" y0="5.5mm" dx="116mm" dy="169mm"/>
<Layout nx="1" ny="1" x0="87.5mm" y0="90mm" dx="116mm" dy="116mm"/>
</Label-cd>
</Template>
<Template brand="JAC" part="987349-2" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="34mm" round="1.2mm" x_waste="5mm" y_waste="1.5mm">
<Markup-margin size="2mm"/>
<Layout nx="1" ny="2" x0="133.5mm" y0="5.5mm" dx="80mm" dy="39mm"/>
<Layout nx="1" ny="2" x0="133mm" y0="216.5mm" dx="80mm" dy="39mm"/>
<Layout nx="1" ny="1" x0="5.5mm" y0="130mm" dx="80mm" dy="37mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 117 CD labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="117" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58.5mm" hole="20mm" waste="5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="21.5mm" dx="123.35mm" dy="137mm"/>
</Label-cd>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 3821 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="3821" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="38mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="5" ny="13" x0="10mm" y0="10.7mm" dx="38mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 4816 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="4816" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="48.3mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="4" ny="16" x0="8.4mm" y0="13.3mm" dx="48.3mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 4825 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="4825" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="48.3mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="4" ny="11" x0="8.4mm" y0="8.8mm" dx="48.3mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 5221 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="5221" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="52.2mm" height="21.2mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="4" ny="14" x0="0.6mm" y0="0mm" dx="52.2mm" dy="21.2mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 5229 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="5229" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="52.5mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="4" ny="10" x0="0.6mm" y0="0mm" dx="52.5mm" dy="29.7mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 6339 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="6339" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="63mm" height="39.5mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="7" x0="10.5mm" y0="10.25mm" dx="63mm" dy="39.5mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 6633 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="6633" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="66mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="6mm" y0="13.3mm" dx="66mm" dy="33.8mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7016 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7016" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="16.9mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="17" x0="0mm" y0="4.85mm" dx="70mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 6339 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7025" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="25.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="11" x0="0mm" y0="8.8mm" dx="70mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7029 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7029" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="29.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="10" x0="0mm" y0="0mm" dx="70mm" dy="29.7mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7032 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7032" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="32mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="9" x0="0mm" y0="4.5mm" dx="70mm" dy="32mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7036 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7036" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="9mm" dx="70mm" dy="36mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7037 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7037" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="37.12mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="0mm" dx="70mm" dy="37.12mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7041 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7041" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="7" x0="0mm" y0="10mm" dx="70mm" dy="41mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7042 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7042" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="42.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="7" x0="0mm" y0="0mm" dx="70mm" dy="42.4mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7050 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7050" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="50.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="5" x0="0mm" y0="21.5mm" dx="70mm" dy="50.8mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 7067 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="7067" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="4" x0="0mm" y0="13.1mm" dx="70mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 8937 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="8937" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="89mm" height="37.12mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="8" x0="11mm" y0="0mm" dx="89mm" dy="37.12mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 9633 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="9633" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96.5mm" height="33.8mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="8" x0="8.5mm" y0="13.3mm" dx="96.5mm" dy="33.8mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 9642 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="9642" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96.5mm" height="42.3mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="6" x0="8.5mm" y0="21.6mm" dx="96.5mm" dy="42.3mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 9667 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="9667" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="96.5mm" height="67.7mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="4" x0="8.5mm" y0="13.1mm" dx="96.5mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10537 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10537" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="37mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="8" x0="0mm" y0="0.5mm" dx="105mm" dy="37mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10541 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10541" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="10mm" dx="105mm" dy="41mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10542 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10542" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="42.4mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="1.5mm" dx="105mm" dy="42.4mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10548 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10548" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="48mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="6" x0="0mm" y0="4.5mm" dx="105mm" dy="48mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10557 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10557" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="57mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="0mm" y0="6mm" dx="105mm" dy="57mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10570 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10570" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="70mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="0mm" y0="8.5mm" dx="105mm" dy="70mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 10574 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="10574" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="74.25mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="4" x0="0mm" y0="0mm" dx="105mm" dy="74.25mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 70362 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="70362" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="4.5mm" dx="70mm" dy="36mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 70412 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="70412" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="7" x0="0mm" y0="5mm" dx="70mm" dy="41mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- JAC 105148 rectangular labels. -->
<!-- ******************************************************************** -->
<Template brand="JAC" part="105148" size="A4" _description="Rectangular labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="105mm" height="148mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC 210297, 210mm x 297mm, 1 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="210297" size="A4" _description="Labels A4">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="210mm" height="297mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-32 PVC labels, 54 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-32" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="16mm" waste="1.1mm">
<Markup-margin size="3.175mm"/>
<Layout nx="9" ny="6" x0="6mm" y0="10mm" dx="34.375mm" dy="34.85mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-50 PVC labels, 20 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-50" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="25mm" waste="0.9mm">
<Markup-margin size="3.175mm"/>
<Layout nx="5" ny="4" x0="6mm" y0="10mm" dx="64.25mm" dy="52.083mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-67 PVC labels, 12 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-67" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="33.5mm" waste="2mm">
<Markup-margin size="3.175mm"/>
<Layout nx="4" ny="3" x0="5.2mm" y0="11.05mm" dx="77mm" dy="71mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-100 PVC labels, 6 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-100" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="50mm" waste="3mm">
<Markup-margin size="3.175mm"/>
<Layout nx="3" ny="2" x0="3mm" y0="11.25mm" dx="107mm" dy="107.5mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-120 PVC labels, 4 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-120" size="Other" width="250mm" height="258mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="60mm" waste="0mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="2.5mm" y0="10.5mm" dx="125mm" dy="125mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-147 PVC labels, 4 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-147" size="Other" width="323mm" height="304.8mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="73.5mm" waste="2.5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="3mm" y0="3.5mm" dx="152mm" dy="152mm"/>
</Label-round>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-2048 PVC labels, 48 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-2048" size="Other" width="323mm" height="222.2mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="20mm" height="48mm" round="2.5mm" x_waste="2.5mm" y_waste="2.5mm">
<Markup-margin size="2mm"/>
<Layout nx="6" ny="4" x0="2.6mm" y0="12.6mm" dx="25mm" dy="53mm"/>
<Layout nx="6" ny="4" x0="164.1mm" y0="12.6mm" dx="25mm" dy="53mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-3070 PVC labels, 24 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-3070" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="30mm" round="2.5mm" x_waste="2.4mm" y_waste="2.4mm">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="6" x0="2.4mm" y0="15.1mm" dx="75mm" dy="35mm"/>
<Layout nx="2" ny="6" x0="163.9mm" y0="15.1mm" dx="75mm" dy="35mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-3248 PVC labels, 32 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-3248" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="32mm" height="48mm" round="2.5mm" x_waste="2mm" y_waste="2mm">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="4" x0="2.3mm" y0="12.7mm" dx="37mm" dy="53mm"/>
<Layout nx="4" ny="4" x0="163.8mm" y0="12.7mm" dx="37mm" dy="53mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-32102 PVC labels, 16 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-32102" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="32mm" height="102mm" round="2.5mm" x_waste="2.5mm" y_waste="2.5mm">
<Markup-margin size="2mm"/>
<Layout nx="4" ny="2" x0="2.5mm" y0="10.45mm" dx="37mm" dy="107mm"/>
<Layout nx="4" ny="2" x0="164mm" y0="10.4mm" dx="37mm" dy="107mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-68102 PVC labels, 8 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-68102" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="elliptical-label"/>
<Label-ellipse id="0" width="68mm" height="102mm" waste="2.5mm">
<Markup-margin size="3.175mm"/>
<Layout nx="4" ny="2" x0="5mm" y0="11.05mm" dx="78mm" dy="107mm"/>
</Label-ellipse>
</Template>
<!-- ******************************************************************* -->
<!-- JAC F-102150 PVC labels, 4 per sheet -->
<!-- ******************************************************************* -->
<Template brand="JAC" part="F-102150" size="Other" width="323mm" height="222.25mm" _description="PVC labels">
<Meta category="label"/>
<Meta category="elliptical-label"/>
<Label-ellipse id="0" width="150mm" height="102mm" waste="2mm">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="2" x0="3.5mm" y0="10.75mm" dx="160.5mm" dy="107.2mm"/>
</Label-ellipse>
</Template>
</Glabels-templates>
+39
View File
@@ -0,0 +1,39 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Maco US-Letter products -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<Template brand="Maco" part="LL5805" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
</Label-rectangle>
</Template>
<Template brand="Maco" part="ML-1225" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.25in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/>
</Label-round>
</Template>
</Glabels-templates>
+178
View File
@@ -0,0 +1,178 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ************************* -->
<!-- -->
<!-- Meritline -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- Meritline Mini CD/DVD Labels (face only), 5 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="176-020-001" size="US-Letter" _description="Mini-CD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="110.5" hole="57.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="2" x0="48.4" y0="47.6" dx="299.5" dy="481.5"/>
<Layout nx="1" ny="1" x0="197.3" y0="289.5" dx="0" dy="0"/>
</Label-cd>
</Template>
<Template brand="Meritline" part="176-019-001" equiv="176-020-001"/>
<Template brand="Meritline" part="176-009-001" equiv="176-020-001"/>
<!-- ===================================================================-->
<!-- Meritline Address Labels, 30 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-002-001" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Address Labels, 20 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-003-001" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Address Labels, 14 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-004-001" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.333333333in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7"
x0="0.15625in" y0="0.833333333in" dx="4.1875in" dy="1.333333333in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Shipping Labels, 10 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-005-001" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Shipping Labels, 6 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-006-001" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Return Address Labels, 80 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-008-001" size="US-Letter" _description="Return Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="1.75in" height="0.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Full Sheet Labels, 1 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-007-001" size="US-Letter" _description="Full Sheet Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="8.5in" height="11.in" round="0">
<Markup-margin size="0.0625in"/>
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Address Labels, 12 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-010-001" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Round Labels, 24 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-014-001" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="0.8125in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="6" x0="0.4157in" y0="0.549in" dx="2.0145in" dy="1.6554in"/>
</Label-round>
</Template>
<!-- ===================================================================-->
<!-- Meritline Diskette Labels, 9 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-009-001" size="US-Letter" _description="Diskette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="2.75in" height="2.75in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Video Tape Face Labels, 10 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-012-001" size="US-Letter"
_description="Video Tape Face Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="220" height="133" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/>
</Label-rectangle>
</Template>
<!-- ===================================================================-->
<!-- Meritline Video Tape Spine Labels, 15 per sheet -->
<!-- ===================================================================-->
<Template brand="Meritline" part="177-013-001" size="US-Letter"
_description="Video Tape Spine Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="414" height="48" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="15" x0="99" y0="36" dx="0" dy="48"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+27
View File
@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ******************************************************************** -->
<!-- Micro Application products -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Micro Application: Standard Labels, 60.5mm x 29.6mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Micro Application" part="5057" size="A4" _description="Standard Labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="8" x0="12mm" y0="23mm" dx="62.5mm" dy="31.6mm"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+707
View File
@@ -0,0 +1,707 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ******************************************************************** -->
<!-- Misc. ISO sized products. -->
<!-- ******************************************************************** -->
<!-- ************************* -->
<!-- -->
<!-- Agipa -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Agipa 114036: Rectangulars Labels, 48.5 x 18.5 mm, 16 per A5 sheet -->
<!-- =================================================================== -->
<Template brand="Agipa" part="114036" size="A5" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="18.5mm" height="48.5mm" round="10">
<Layout nx="7" ny="4" x0="4mm" y0="2mm" dx="20mm" dy="49mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Agipa 119488: Business Cards, 50 x 90 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Agipa" part="119488" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="255" height="142" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="43" y0="67" dx="255" dy="142"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- APLI -->
<!-- -->
<!-- ************************* -->
<!-- ====================================================== -->
<!-- APLI 02793: Business Cards, 50,8 x 90 mm, 10 per sheet -->
<!-- ====================================================== -->
<Template brand="APLI" part="02793" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="255.118" height="144" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="42.5197" y0="62.3622" dx="255.118" dy="144"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- APLI 1999: Mailing Labels, 9,9cm x 6,8cm, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="APLI" part="1999" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="281" height="193" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="4" x0="13" y0="21.890" dx="289" dy="194"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- APLI 01293: General Labels. -->
<!-- =================================================================== -->
<Template brand="APLI" part="01293" size="A4" _description="General Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="198.425pt" height="94.3937pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="3" ny="8" x0="0pt" y0="43.3701pt" dx="198.425pt" dy="94.3937pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- APLI 01271: General Labels. -->
<!-- =================================================================== -->
<Template brand="Apli" part="1271" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="30mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/>
<Layout nx="3" ny="9" x0="0mm" y0="13.5mm" dx="70mm" dy="30mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Best Office -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Best Office Self-adhesive labels. -->
<!-- =================================================================== -->
<Template brand="Best Office" part="75753" size="A4" _description="Self-adhesive labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="70mm" height="36mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="4mm" dx="70mm" dy="36mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Biltema -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Biltema 23-756: Address labels, 63.50 x 71.98 mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Biltem" part="23-756" size="A4" _description="Address labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="180" height="204.038" round="8.5">
<Markup-margin size="5"/>
<Layout nx="3" ny="4" x0="20.84" y0="10" dx="187.08" dy="204.038"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Bruna -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Bruna 241301. Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="Bruna" part="241301" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="198.425pt" height="102.047pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="3" ny="8" x0="0pt" y0="0pt" dx="198.425pt" dy="102.047pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Celcast -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Celcast IJ37: Fridge magnet (stickers), 52 x 90 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Celcast" part="IJ37" size="A4" _description="Fridge Magnet Stickers">
<Meta category="label"/>
<Label-rectangle id="0" width="255" height="147.5" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="43" y0="52.7" dx="255" dy="147.5"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Connect -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Connect KF10647 Mailing Labels.. -->
<!-- =================================================================== -->
<Template brand="Connect" part="KF10647" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="198.425pt" height="104.882pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="3" ny="8" x0="7.86772e-17pt" y0="11.3386pt" dx="198.425pt" dy="104.882pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Ednet -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Ednet BC: Business Cards, 51 x 89 mm, 10 per sheet -->
<!-- =================================================================== -->
<!-- TODO: Is this a real part #? -->
<Template brand="Ednet" part="BC" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="253" height="145" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="40" y0="59" dx="253" dy="145"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ednet 45021: Inkjet/Laser Labels 70x37mm -->
<!-- =================================================================== -->
<Template brand="Ednet" part="45021" size="A4" _description="Inkjet/Laser Labels 70x37mm">
<Meta category="label"/>
<Label-rectangle id="0" width="198.425pt" height="104.882pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="0pt"/>
<Layout nx="3" ny="8" x0="0pt" y0="0pt" dx="198.425pt" dy="104.882pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Encre.com -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- Encre.com Business Cards, 10 per sheet -->
<!-- ===================================================================-->
<Template brand="Encre.com" part="BCV10" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="243.78" height="153.07">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="48.19" y0="42.50" dx="255.12" dy="157.32"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Epson -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- EPSON Photo Stickers, 17 x 24 mm, 16 per sheet -->
<!-- =================================================================== -->
<Template brand="Epson" part="S041144" size="A6" _description="EPSON Photo Stickers 16">
<Meta category="label"/>
<Label-rectangle id="0" width="48" height="68" round="7">
<Markup-margin size="5"/>
<Layout nx="4" ny="4" x0="33" y0="59" dx="59.5" dy="79.5"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Fellows -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Fellows 04715 CD/DVD Labels (Face only). -->
<!-- =================================================================== -->
<Template brand="Fellows" part="04715" size="A4" _description="CD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="133.2pt" y0="50.4pt" dx="244.276pt" dy="363.6pt"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Hema -->
<!-- -->
<!-- ************************* -->
<!-- TODO: Is this a typo of "Herma?" -->
<!-- =================================================================== -->
<!-- Hema Etiketten: 65 x 38 mm, 21 per sheet -->
<!-- =================================================================== -->
<!-- TODO: What is the actual part #? -->
<Template brand="Hema" part="Etiketten" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="178" height="108" round="5">
<Markup-margin size="5"/>
<Layout nx="3" ny="7" x0="20" y0="49.890" dx="187" dy="107"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Impact -->
<!-- -->
<!-- ************************* -->
<!-- ============================================================ -->
<!-- Impact LC33 Family: Rectangular Labels -->
<!-- ============================================================ -->
<Template brand="Impact" part="LC33" size="A4" description="Rectangular Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="70mm" height="25mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3mm"/>
<Layout nx="3" ny="11" x0="0mm" y0="10mm" dx="70mm" dy="25mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Kores -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Kores KPCV1: Business Cards, 50 x 90 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Kores" part="KPCV1" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="90mm" height="50mm" round="0">
<Markup-margin size="1mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="24mm" dx="90mm" dy="50mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- LeLabel -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- LeLabel 2001.018 CD/DVD Labels, 1 per sheet -->
<!-- ===================================================================-->
<Template brand="LeLabel" part="2001.018" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="168.08" hole="54.69" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="128.556" y0="42.52" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Media Line -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- Media Line CD/DVD Labels (face only), 2 per sheet -->
<!-- ===================================================================-->
<Template brand="MediaLine" part="760-50475 A4 CD" size="A4" _description="CD/DVD Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="133" y0="45" dx="0" dy="422"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Neato -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- Neato brand CD/DVD Labels (face only), 2 per sheet -->
<!-- ===================================================================-->
<!-- TODO: Is this the actual part #? -->
<Template brand="Neato" part="A4 CD" size="A4" _description="CD/DVD Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="125" y0="68.890" dx="0" dy="360"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Poundland -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Poundland 30 Labels. -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Poundland" part="30" size="A4" _description="Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="184.252pt" height="72pt" round="8.50394pt" x_waste="4.25197pt" y_waste="0pt">
<Markup-margin size="7.08661pt"/>
<Layout nx="3" ny="10" x0="4.25197pt" y0="62.3622pt" dx="201.26pt" dy="72pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Pressit -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Pressit CD Labels. -->
<!-- =================================================================== -->
<Template brand="Pressit" part="50blank" size="A4" _description="CD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="1" x0="30.096pt" y0="70.416pt" dx="351pt" dy="351pt"/>
<Layout nx="1" ny="1" x0="233.208pt" y0="440.712pt" dx="351pt" dy="351pt"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Q_CONNECT -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Q_CONNECT multi-purpose labels, 8 per sheet. -->
<!-- =================================================================== -->
<Template brand="Q-CONNECT" part="KF26055" size="A4" _description="Multi-Purpose Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99.1mm" height="67.7mm" round="2mm" x_waste="1mm" y_waste="0mm">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="4" x0="6mm" y0="13mm" dx="101.1mm" dy="67.7mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Russian -->
<!-- -->
<!-- ************************* -->
<!-- TODO: Is this the actual vendor? Or is this a generic for multiple
vendors? -->
<!-- =================================================================== -->
<!-- Russian A3 5x9 Business Cards. -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Russian" part="A3 5x9" size="A3" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="90mm" height="50mm" round="0">
<Markup-margin size="5pt"/>
<Layout nx="3" ny="8" x0="14mm" y0="10mm" dx="90mm" dy="50mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Russian A4 5x9 Business Cards. -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Russian" part="A4 5x9" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="50mm" height="90mm" round="0">
<Markup-margin size="5pt"/>
<Layout nx="4" ny="3" x0="5mm" y0="13mm" dx="50mm" dy="90mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Ryman -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Ryman P14 Universal labels. -->
<!-- =================================================================== -->
<Template brand="Ryman" part="P14" size="A4" _description="Universal Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="99.1mm" height="38.1mm" round="0.2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="4.2mm" y0="13.8mm" dx="102mm" dy="38.1mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Ryman Standard CD/DVD Labels. -->
<!-- =================================================================== -->
<!-- Is this the actual part #? -->
<Template brand="Ryman" part="Standard CD/DVD" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.827pt" hole="58.1102pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="131.811pt" y0="60.6614pt" dx="245.622pt" dy="388.346pt"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Ryman 0215016061 CD/DVD Labels. -->
<!-- =================================================================== -->
<Template brand="Ryman" part="0215016061" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.827pt" hole="24.0945pt" waste="8.50394pt">
<Markup-margin size="0pt"/>
<Layout nx="1" ny="2" x0="131.811pt" y0="60.6614pt" dx="348.661pt" dy="388.346pt"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Sanwa -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Sanwa LB-CDRJP. CD Labels. -->
<!-- =================================================================== -->
<Template brand="Sanwa" part="LB-CDRJP" size="A4" _description="CD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="167.244pt" hole="34.0pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="29.1969pt" y0="70.8661pt" dx="352.488pt" dy="367.087pt"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Sigel -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Sigel LA 505: CD/DVD Labels -->
<!-- =================================================================== -->
<Template brand="Sigel" part="LA 505" size="A4" _description="CD/DVD labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="58.5mm" hole="8.5mm" waste="2mm">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="1" x0="45mm" y0="20mm" dx="123.4mm" dy="123.4mm"/>
<Layout nx="1" ny="1" x0="45mm" y0="159mm" dx="123.4mm" dy="123.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Sigel LP 795: Business Cards, 55.0 x 85.0 mm -->
<!-- =================================================================== -->
<Template brand="Sigel" part="LP 795" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85mm" height="55mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="0mm"/>
<Layout nx="2" ny="5" x0="14mm" y0="10.5mm" dx="95mm" dy="55mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Sigel LP 800/LP 801/LP 802: Business Cards, 55.0 x 85.0 mm -->
<!-- =================================================================== -->
<Template brand="Sigel" part="LP 800" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85.0mm" height="55.0mm" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="15.0mm" y0="10.0mm" dx="95.0mm" dy="55.0mm"/>
</Label-rectangle>
</Template>
<Template brand="Sigel" part="LP 801" equiv="LP 800"/>
<Template brand="Sigel" part="LP 802" equiv="LP 800"/>
<!-- =================================================================== -->
<!-- Sigel DP 830/DP 930: Business Cards, 55.0 x 85.0 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sigel" part="DP 830" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="240.9" height="155.9" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="40" y0="31" dx="269" dy="156"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Sigel DE 160: Bottle labels, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Sigel" part="DE 160" size="A4" _description="Bottle labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="15mm" y0="19.5mm" dx="100mm" dy="138mm"/>
</Label-rectangle>
</Template>
<Template brand="Sigel" part="DP 930" equiv="DP 830"/>
<!-- ************************* -->
<!-- -->
<!-- Staples -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Staples EU Business Cards Supreme. -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Staples" part="EU BC Supreme" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="240.945pt" height="155.906pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9.07087pt"/>
<Layout nx="1" ny="5" x0="42.5197pt" y0="28.3465pt" dx="240.945pt" dy="155.906pt"/>
<Layout nx="1" ny="5" x0="311.811pt" y0="28.3465pt" dx="240.945pt" dy="155.906pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Staples STAP14 Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="Staples" part="STAP14" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<Label-rectangle id="0" width="99mm" height="38mm" round="2mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3mm"/>
<Layout nx="2" ny="7" x0="5mm" y0="15mm" dx="102mm" dy="38mm"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Stomper -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- CD STOMPER PRO CD Label Refills, (Face Only) ISO Version -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Stomper" part="PRO A4" size="A4" _description="PRO CD Labels 2-up (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58" waste="10">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="34.5" y0="47" dx="0" dy="0"/>
<Layout nx="1" ny="1" x0="223" y0="459" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Viking -->
<!-- -->
<!-- ************************* -->
<!-- ===================================================================-->
<!-- Viking 02204 Etiketten, 21 per sheet -->
<!-- ===================================================================-->
<Template brand="Viking" part="02204" size="A4" _description="Etiketten">
<Meta category="label"/>
<Label-rectangle id="0" width="198" height="120" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="7" x0="0" y0="0" dx="198" dy="120"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- Misc. non-standard sized products. -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- Merax US-Letter products. -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Merax CD Labels -->
<!-- =================================================================== -->
<Template brand="Merax" part="CD Labels" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="33.75" y0="45" dx="0" dy="0"/>
<Layout nx="1" ny="1" x0="245.25" y0="411.75" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- OfficeMax -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- OfficeMax 86112: Multi-Purpose Labels, 2'' x 4'', 3 per sheet -->
<!-- =================================================================== -->
<Template brand="OfficeMax" part="86112" size="Other" width="297pt" height="450pt"
_description="Multi-Purpose Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="288pt" height="144pt" round="9pt" waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="3" x0="4.5pt" y0="3.6pt" dx="288pt" dy="148.5pt"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+356
View File
@@ -0,0 +1,356 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- Misc. US sized products. -->
<!-- ******************************************************************** -->
<!-- ************************* -->
<!-- -->
<!-- Great Gizmos -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Great Gizmos : CD/DVD Labels (face only), 2 per sheet * -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Great Gizmos" part="CD/DVD" size="US-Letter"
_description="CD/DVD Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="139.5" y0="42.52" dx="0" dy="374.17"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Imation-SoniX -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Imation-SoniX CD/DVD Labels (Face Only) * -->
<!-- =================================================================== -->
<Template brand="Imation-SoniX" part="No.5112 15954" size="US-Letter"
_description="CD/DVD Labels (Face Only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="167.8" hole="18.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="40.5" y0="370" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Kingdom -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Kingdom L Cassette Labels, 12 per sheet. -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Kingdom" part="L" size="US-Letter" _description="Cassette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="252pt" height="117pt" round="9pt" x_waste="2.376pt" y_waste="2.376pt">
<Markup-margin size="9pt"/>
<Layout nx="2" ny="6" x0="33.12pt" y0="27pt" dx="261pt" dy="126.144pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Memorex -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Memorex CD Labels * -->
<!-- =================================================================== -->
<!-- TODO: Is this the actual part #? -->
<Template brand="Memorex" part="CD Labels" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="40.5" y0="45" dx="0" dy="0"/>
<Layout nx="1" ny="1" x0="238.5" y0="414" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Neato -->
<!-- -->
<!-- ************************* -->
<!-- TODO: None of the Neato part #s do not seem to follow a consistent
pattern. What are the actual part #s of these items. -->
<!-- ===================================================================-->
<!-- Neato Slimline CD Jewel Case Insert, 2 per sheet. -->
<!-- Left margin area is CD spine; ignore other margins. -->
<!-- To write text on spine, use "upside down" template, "rotated", -->
<!-- spine is bottom margin, print label sheet BOTTOM FIRST. -->
<!-- ===================================================================-->
<Template brand="Neato" part="Slimline CD Case" size="US-Letter"
_description="Slimline CD Case (rightside up)">
<Meta category="card"/>
<Meta category="media"/>
<Label-rectangle id="0" width="394.5" height="342.5" round="0">
<Markup-margin size="7.5"/>
<Layout nx="1" ny="2" x0="130" y0="41.9" dx="0" dy="363"/>
</Label-rectangle>
</Template>
<Template brand="Neato" part="Slimline CD Case, spine" size="US-Letter"
_description="Slimline CD Case (upside down)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="394.5" height="342.5" round="0">
<Markup-margin size="7.5"/>
<Layout nx="1" ny="2" x0="96.5" y0="41.9" dx="0" dy="363"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Neato USCD2lbl.NTT: CD/DVD Labels (face only), 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Neato" part="USCD2lbl.NTT" size="US-Letter"
_description="CD/DVD Labels (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="9">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="139.5" y0="49.5" dx="0" dy="360"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Neato USCD2lbl.NTT: CD/DVD Labels (rectangles), 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Neato" part="USCD2lbl Rectangles" size="US-Letter"
_description="CD Template Rectangles">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="77.04" height="234.36" round="10">
<Markup-margin size="2.016"/>
<Layout nx="2" ny="1" x0="51.3" y0="279.72" dx="433.44" dy="0"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Neato CLP-192328/26: HandiCD-R 50MB, 3" x 2_1/8'', 9 per sheet -->
<!-- =================================================================== -->
<Template brand="Neato" part="HandiCD-R" size="US-Letter"
_description="Business Card CD">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="108" width="171" hole="58" waste="5">
<Markup-margin size="5"/>
<Layout nx="3" ny="3" x0="36.5" y0="54" dx="184.5" dy="234"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Neato 69143: Jewel Case Booklet -->
<!-- =================================================================== -->
<Template brand="Neato" part="69143" size="US-Letter" _description="Jewel Case Booklet">
<Meta category="media"/>
<Label-rectangle id="0" width="4.75in" height="9.5in" round="0in" x_waste="0in" y_waste="0in">
<Markup-margin size="0.125in"/>
<Markup-line x1="0in" y1="4.75in" x2="4.75in" y2="4.75in"/>
<Layout nx="1" ny="1" x0="1.875in" y0="0.75in" dx="4.75in" dy="9.5in"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Netc -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Netc Label Stock: DLT Labels, (www.netclabels.com), 30 per sheet -->
<!-- =================================================================== -->
<Template brand="Netc" part="749303-70001 " size="US-Letter" _description="DLT Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="162" height="59.4" round="0">
<Markup-margin size="18"/>
<Layout nx="3" ny="10" x0="36" y0="45" dx="189" dy="72"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- OfficeMax -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- OfficeMax OM99060 Mailing Labels. -->
<!-- =================================================================== -->
<Template brand="OfficeMax" part="OM99060" size="US-Letter" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="203.76pt" height="72pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="12.024pt"/>
<Layout nx="3" ny="10" x0="0pt" y0="36pt" dx="203.76pt" dy="72pt"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Online Labels -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Online Labels OL1025 Round Labels. -->
<!-- =================================================================== -->
<Template brand="Online Labels" part="OL1025" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Meta product_url="http://www.onlinelabels.com/OL1025.htm"/>
<Label-round id="0" radius="0.5in" waste="0.062in">
<Markup-margin size="0.125in"/>
<Layout nx="7" ny="9" x0="0.375in" y0="0.5in" dx="1.125in" dy="1.125in"/>
</Label-round>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Southworth -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Southworth BC: Business Cards, 2'' x 3_1/2'', 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Southworth" part="BC554" size="US-Letter" _description="Business Cards">
<Meta category="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">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="36" y0="36" dx="288" dy="144"/>
</Label-rectangle>
</Template>
<Template brand="Southworth" part="BC564" equiv="BC554"/>
<Template brand="Southworth" part="BC#11" equiv="BC554"/>
<Template brand="Southworth" part="BC#12" equiv="BC554"/>
<!-- ************************* -->
<!-- -->
<!-- Staples -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Staples 598385 CD/DVD Labels. -->
<!-- =================================================================== -->
<Template brand="Staples" part="598385" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="2.312in" hole="0.8125in" waste="0.065in">
<Markup-margin size="0.125in"/>
<Layout nx="1" ny="2" x0="2in" y0="0.6875in" dx="4.754in" dy="5in"/>
</Label-cd>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Stomper -->
<!-- -->
<!-- ************************* -->
<!-- TODO: Are these the actual part #s? -->
<!-- =================================================================== -->
<!-- CD STOMPER PRO CD Label Refills, (Face Only) * -->
<!-- =================================================================== -->
<Template brand="Stomper" part="PRO CD" size="US-Letter"
_description="PRO CD Labels 2-up (face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5" hole="58.5" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="1" x0="34" y0="43" dx="0" dy="0"/>
<Layout nx="1" ny="1" x0="245" y0="416" dx="0" dy="0"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- CD STOMPER PRO Zip Label Refills. * -->
<!-- =================================================================== -->
<Template brand="Stomper" part="PRO Zip" size="US-Letter"
_description="PRO CD Labels 2-up (Face only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="168" height="142" round="0">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="407" y0="68" dx="0" dy="142"/>
<Layout nx="1" ny="2" x0="37" y0="440" dx="0" dy="142"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- CD STOMPER PRO Spine Label Refills. * -->
<!-- =================================================================== -->
<Template brand="Stomper" part="PRO Spine" size="US-Letter"
_description="PRO CD Labels 2-up (CD spine only)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="288" height="20" round="0">
<Markup-margin size="2"/>
<Layout nx="2" ny="1" x0="18" y0="385" dx="288" dy="0"/>
</Label-rectangle>
</Template>
<!-- ************************* -->
<!-- -->
<!-- Tough-Tags -->
<!-- -->
<!-- ************************* -->
<!-- =================================================================== -->
<!-- Tough-Tags TTLW-2016 Microtube labels, 85 per sheet. -->
<!-- =================================================================== -->
<Template brand="Tough-Tags" part="TTLW-2016" size="US-Letter" _description="Microtube labels">
<Meta category="label"/>
<Label-rectangle id="0" width="92.16" height="36" round="5">
<Markup-margin size="5"/>
<Layout nx="5" ny="17" x0="68" y0="4.17" dx="100.8" dy="45.3"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0"?>
<Glabels-paper-sizes>
<!-- Most popular (at top of list) -->
<Paper-size id="A4" _name="A4" pwg_size="iso_a4" width="210mm" height="297mm"/>
<Paper-size id="US-Letter" _name="US Letter" pwg_size="na_letter" width="8.5in" height="11in"/>
<!-- Other US paper sizes -->
<Paper-size id="US-Legal" _name="US Legal" pwg_size="na_legal" width="8.5in" height="14in"/>
<Paper-size id="US-Executive" _name="US Executive" pwg_size="na_executive" width="7.25in" height="10.5in"/>
<!-- Other ISO A series sizes -->
<Paper-size id="A0" _name="A0" pwg_size="iso_a0" width="841mm" height="1189mm"/>
<Paper-size id="A1" _name="A1" pwg_size="iso_a1" width="594mm" height="841mm"/>
<Paper-size id="A2" _name="A2" pwg_size="iso_a2" width="420mm" height="594mm"/>
<Paper-size id="A3" _name="A3" pwg_size="iso_a3" width="297mm" height="420mm"/>
<Paper-size id="A5" _name="A5" pwg_size="iso_a5" width="148mm" height="210mm"/>
<Paper-size id="A6" _name="A6" pwg_size="iso_a6" width="105mm" height="148mm"/>
<Paper-size id="A7" _name="A7" pwg_size="iso_a7" width="74mm" height="105mm"/>
<Paper-size id="A8" _name="A8" pwg_size="iso_a8" width="52mm" height="74mm"/>
<Paper-size id="A9" _name="A9" pwg_size="iso_a9" width="37mm" height="52mm"/>
<Paper-size id="A10" _name="A10" pwg_size="iso_a10" width="26mm" height="37mm"/>
<!-- ISO B series sizes -->
<Paper-size id="B0" _name="B0" pwg_size="iso_b0" width="1000mm" height="1414mm"/>
<Paper-size id="B1" _name="B1" pwg_size="iso_b1" width="707mm" height="1000mm"/>
<Paper-size id="B2" _name="B2" pwg_size="iso_b2" width="500mm" height="707mm"/>
<Paper-size id="B3" _name="B3" pwg_size="iso_b3" width="353mm" height="500mm"/>
<Paper-size id="B4" _name="B4" pwg_size="iso_b4" width="250mm" height="353mm"/>
<Paper-size id="B5" _name="B5" pwg_size="iso_b5" width="176mm" height="250mm"/>
<Paper-size id="B6" _name="B6" pwg_size="iso_b6" width="125mm" height="176mm"/>
<Paper-size id="B7" _name="B7" pwg_size="iso_b7" width="88mm" height="125mm"/>
<Paper-size id="B8" _name="B8" pwg_size="iso_b8" width="62mm" height="88mm"/>
<Paper-size id="B9" _name="B9" pwg_size="iso_b9" width="44mm" height="62mm"/>
<Paper-size id="B10" _name="B10" pwg_size="iso_b10" width="31mm" height="44mm"/>
<!-- Envelopes -->
<Paper-size id="number10" _name="#10 Envelope" pwg_size="na_number-10" width="4.125in" height="9.5in"/>
<Paper-size id="monarch" _name="Monarch Envelope" pwg_size="na_monarch" width="3.875in" height="7.5in"/>
<Paper-size id="c5" _name="C5" pwg_size="iso_c5" width="162mm" height="229mm"/>
<Paper-size id="c6" _name="C6" pwg_size="iso_c6" width="114mm" height="162mm"/>
<Paper-size id="dl" _name="DL" pwg_size="iso_dl" width="110mm" height="220mm"/>
<!-- ISO 217 -->
<Paper-size id="RA0" _name="RA0" pwg_size="iso_ra0" width="860mm" height="1220mm"/>
<Paper-size id="RA1" _name="RA1" pwg_size="iso_ra1" width="610mm" height="860mm"/>
<Paper-size id="RA2" _name="RA2" pwg_size="iso_ra2" width="430mm" height="610mm"/>
<Paper-size id="RA3" _name="RA3" pwg_size="iso_ra3" width="305mm" height="430mm"/>
<Paper-size id="RA4" _name="RA4" pwg_size="iso_ra4" width="215mm" height="305mm"/>
<Paper-size id="SRA0" _name="SRA0" pwg_size="iso_sra0" width="900mm" height="1280mm"/>
<Paper-size id="SRA1" _name="SRA1" pwg_size="iso_sra1" width="640mm" height="900mm"/>
<Paper-size id="SRA2" _name="SRA2" pwg_size="iso_sra2" width="450mm" height="640mm"/>
<Paper-size id="SRA3" _name="SRA3" pwg_size="iso_sra3" width="320mm" height="450mm"/>
<Paper-size id="SRA4" _name="SRA4" pwg_size="iso_sra4" width="225mm" height="320mm"/>
</Glabels-paper-sizes>
+745
View File
@@ -0,0 +1,745 @@
<?xml version="1.0"?>
<Glabels-templates xmlns="http://glabels.org/xmlns/3.0/">
<!-- ******************************************************************** -->
<!-- PEARL products -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- PEARL: Adress Labels, 70mm x 36mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="PE-8004" size="A4" _description="Address Labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="8" x0="0mm" y0="4.8mm" dx="70mm" dy="36mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="PE-8014" equiv="PE-8004"/>
<!-- =================================================================== -->
<!-- PEARL: Round labels, d=40mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6085" size="A4" _description="Round labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Meta product_url="http://www.pearl.de/a-VM6085-2204.shtml"/>
<Label-round id="0" radius="20mm" waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="4" ny="6" x0="16mm" y0="13.5mm" dx="46mm" dy="46mm"/>
</Label-round>
</Template>
<Template brand="PEARL" part="VM-6585" equiv="VM-6085"/>
<!-- =================================================================== -->
<!-- PEARL: Adress Labels, 48.8mm x 25.4mm, 40 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="PE-8008" size="A4" _description="Address Labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="4" ny="10" x0="8mm" y0="21.5mm" dx="48.4mm" dy="25.4mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="PE-8018" equiv="PE-8008"/>
<!-- =================================================================== -->
<!-- PEARL: Labels, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="PE-8007" size="A4" _description="Labels A4">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="PE-8017" equiv="PE-8007"/>
<!-- =================================================================== -->
<!-- PEARL: Self-adhesive film, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="PE-8350" size="A4" _description="Self-adhesive film weatherproof">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="PE-8352" equiv="PE-8350"/>
<!-- =================================================================== -->
<!-- PEARL: Self-adhesive film, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="PE-8351" size="A4" _description="Self-adhesive film transparent">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="PE-894" equiv="PE-8351"/>
<!-- =================================================================== -->
<!-- PEARL: Application photos, 45mm x 55mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5040" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="22.5mm" dx="55mm" dy="65mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-5540" equiv="VM-5040"/>
<!-- =================================================================== -->
<!-- PEARL: Self-adhesive window film, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5081" size="A4" _description="Self-adhesive window film">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-5581" equiv="VM-5081"/>
<!-- =================================================================== -->
<!-- PEARL: Bottle labels, 100mm x 130mm, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5217" size="A4" _description="Bottle labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="2" x0="4.5mm" y0="14mm" dx="107mm" dy="130mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-5517" equiv="VM-5217"/>
<!-- =================================================================== -->
<!-- PEARL: Self-adhesive film, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5220" size="A4" _description="Self-adhesive film weatherproof">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-5720" equiv="VM-5220"/>
<!-- =================================================================== -->
<!-- PEARL: Floppy disk labels, 70mm x 70mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5221" size="A4" _description="Floppy disk labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="0mm" y0="8.5mm" dx="70mm" dy="70mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-5721" equiv="VM-5221"/>
<!-- =================================================================== -->
<!-- PEARL: Address Labels, 25.4mm x 16.9mm, 102 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6083" size="A4" _description="Address Labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="7" ny="16" x0="9mm" y0="13mm" dx="27.9mm" dy="16.9mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6583" equiv="VM-6083"/>
<!-- =================================================================== -->
<!-- PEARL: Labels, 105mm x 148 mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6096" size="A6" _description="Labels A6">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="105mm" dy="148mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6596" equiv="VM-6096"/>
<!-- =================================================================== -->
<!-- PEARL: Labels, 148mm x 210 mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6097" size="A5" _description="Labels A5">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="148mm" dy="210mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6597" equiv="VM-6097"/>
<!-- =================================================================== -->
<!-- PEARL: Photo labels, 45mm x 55mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6102" size="A4" _description="Photo labels">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6502" equiv="VM-6102"/>
<!-- =================================================================== -->
<!-- PEARL: Photo labels, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6206" size="A4" _description="Photo labels semiglossy">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="210mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6706" equiv="VM-6206"/>
<!-- =================================================================== -->
<!-- PEARL: Address Labels, 96.5mm x 42.3mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6232" size="A4" _description="Address Labels (STAMPIT)">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="2" ny="6" x0="8.5mm" y0="21mm" dx="96.5mm" dy="42.1mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6732" equiv="VM-6232"/>
<!-- =================================================================== -->
<!-- PEARL: Address Labels, 105mm x 74mm, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6233" size="A4" _description="Address Labels (STAMPIT)">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="0mm" y0="0.5mm" dx="105mm" dy="74mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6733" equiv="VM-6233"/>
<!-- =================================================================== -->
<!-- PEARL: Address Labels, 99.1mm x 57mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6234" size="A4" _description="Address Labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="5mm" y0="6mm" dx="102.1mm" dy="57mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6734" equiv="VM-6234"/>
<!-- =================================================================== -->
<!-- PEARL: Self-adhesive abels, 210mm x 297mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6252" size="A4" _description="Self-adhesive labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="0mm" y0="0mm" dx="0mm" dy="297mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-6752" equiv="VM-6252"/>
<!-- =================================================================== -->
<!-- PEARL: SD card labels, 20mm x 25mm, 90 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6398" size="A4" _description="SD card labels">
<Meta category="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">
<Markup-margin size="1.5mm"/>
<Layout nx="9" ny="10" x0="4.5mm" y0="10mm" dx="22.6mm" dy="28mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- PEARL: Address Labels, 105mm x 41mm, 14 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-8005" size="A4" _description="Address Labels">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="5mm" dx="105mm" dy="41mm"/>
</Label-rectangle>
</Template>
<Template brand="PEARL" part="VM-8015" equiv="VM-8005"/>
<!-- =================================================================== -->
<!-- PEARL: Inlet for DVD boxes, 182mm x 276mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6630" size="A4" _description="DVD inlet">
<Meta category="label"/>
<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">
<Markup-rect x1="2mm" y1="2mm" w="178mm" h="128mm"/>
<Markup-rect x1="2mm" y1="146mm" w="178mm" h="128mm"/>
<Markup-line x1="0mm" y1="132mm" x2="182mm" y2="132mm"/>
<Markup-line x1="0mm" y1="144mm" x2="182mm" y2="144mm"/>
<Layout nx="1" ny="1" x0="14mm" y0="10.5mm" dx="192mm" dy="286mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- PEARL: Inlet for CD boxes (front), 120mm x 120mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5513-1" size="A4" _description="CD inlet (front)">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="1" x0="61mm" y0="24mm" dx="130mm" dy="130mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- PEARL: Inlet for CD boxes (back), 150mm x 117.5mm, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-5513-2" size="A4" _description="CD inlet (back)">
<Meta category="label"/>
<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">
<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="144mm" y1="0mm" x2="144mm" y2="117.5mm"/>
<Layout nx="1" ny="1" x0="30.5mm" y0="154.5mm" dx="160mm" dy="127.5mm"/>
</Label-rectangle>
</Template>
<!-- ******************************************************************** -->
<!-- Sattleford products -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Sattleford: Business cards, 85mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-5019" size="A4" _description="Business cards">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="13.5mm" y0="13.5mm" dx="95mm" dy="54.2mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-5519" equiv="VM-5019"/>
<!-- =================================================================== -->
<!-- Sattleford: Passport photo labels, 45mm x 54mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-5040" size="A4" _description="Passport photo labels glossy">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="28mm" y0="24.5mm" dx="55mm" dy="64.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-5540" equiv="VM-5040"/>
<!-- =================================================================== -->
<!-- Sattleford: Business cards, 86mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-5061" size="A4" _description="Business cards punched">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16.5mm" y0="10mm" dx="91mm" dy="55.8mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-5561" equiv="VM-5061"/>
<!-- =================================================================== -->
<!-- Sattleford: Business cards, 85mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6059" size="A4" _description="Business cards punched dull">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16mm" y0="14mm" dx="95mm" dy="54mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-6559" equiv="VM-6059"/>
<!-- =================================================================== -->
<!-- Sattleford: Business cards, 85mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6066" size="A4" _description="Business cards high glossy">
<Meta category="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">
<Markup-margin size="3.175mm"/>
<Layout nx="2" ny="5" x0="14mm" y0="13mm" dx="95mm" dy="54mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-6566" equiv="VM-6066"/>
<!-- =================================================================== -->
<!-- Sattleford: Name plates, 85mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6067" size="A4" _description="Name plates">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="15mm" y0="13mm" dx="95mm" dy="54mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-6567" equiv="VM-6067"/>
<!-- =================================================================== -->
<!-- Sattleford: Passport photo labels, 45mm x 55mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6102" size="A4" _description="Passport photo labels glossy">
<Meta category="label"/>
<Meta category="rectangle-label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="3" ny="4" x0="27mm" y0="23.5mm" dx="55mm" dy="65mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-6502" equiv="VM-6102"/>
<!-- =================================================================== -->
<!-- Sattleford: Foldable business cards, 180mm x 50mm, 5 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6200" size="A4" _description="Business cards glossy, both sides printable">
<Meta category="card"/>
<Meta category="business-card"/>
<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">
<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-line x1="90mm" y1="0mm" x2="90mm" y2="50mm"/>
<Layout nx="1" ny="5" x0="15mm" y0="14mm" dx="180mm" dy="55mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Sattleford: Business cards, 85mm x 54mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6253" size="A4" _description="Business cards punched glossy">
<Meta category="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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="5" x0="16.5mm" y0="6mm" dx="90mm" dy="55.5mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-6753" equiv="VM-6253"/>
<!-- =================================================================== -->
<!-- Sattleford: Foldable business cards, 170mm x 54mm, 5 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6356" size="A4" _description="Foldable business cards glossy/dull">
<Meta category="card"/>
<Meta category="business-card"/>
<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">
<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-line x1="85mm" y1="0mm" x2="85mm" y2="54mm"/>
<Layout nx="1" ny="5" x0="20mm" y0="14mm" dx="170mm" dy="54mm"/>
<Layout nx="1" ny="5" x0="20mm" y0="14mm" dx="170mm" dy="54mm"/>
</Label-rectangle>
</Template>
<Template brand="Sattleford" part="VM-5856" equiv="VM-6356"/>
<!-- =================================================================== -->
<!-- Sattleford: Foldable business cards, 180mm x 50mm, 5 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6700" size="A4" _description="Foldable business cards">
<Meta category="card"/>
<Meta category="business-card"/>
<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">
<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-line x1="90mm" y1="0mm" x2="90mm" y2="50mm"/>
<Layout nx="1" ny="5" x0="15mm" y0="14mm" dx="180mm" dy="55mm"/>
<Layout nx="1" ny="5" x0="15mm" y0="14mm" dx="180mm" dy="55mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Sattleford: Elliptical labels, 63.5mm x 42.3mm, 18 per sheet -->
<!-- =================================================================== -->
<Template brand="Sattleford" part="VM-6084" size="A4" _description="Elliptical labels">
<Meta category="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">
<Markup-margin size="2mm"/>
<Layout nx="3" ny="6" x0="7.25mm" y0="11.6mm" dx="66mm" dy="46.3mm"/>
</Label-ellipse>
</Template>
<!-- ******************************************************************** -->
<!-- Your Design products -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Your Design: Membership cards, 85mm x 54.25mm, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-5112" size="A4" _description="Membership cards">
<Meta category="card"/>
<Meta category="business-card"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="4" x0="12mm" y0="21mm" dx="100mm" dy="68.75mm"/>
</Label-rectangle>
</Template>
<Template brand="Your Design" part="VM-5612" equiv="VM-5112"/>
<!-- =================================================================== -->
<!-- Your Design: Membership cards, 85mm x 54.25mm, 8 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6310" size="A4" _description="Membership cards, both sides printable">
<Meta category="card"/>
<Meta category="business-card"/>
<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">
<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"/>
</Label-rectangle>
</Template>
<Template brand="Your Design" part="VM-6810" equiv="VM-6310"/>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6352" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89.5mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6353" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6354" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6355" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6542" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46mm" y0="25mm" dx="123.75mm" dy="128mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 2 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6754" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="46.5mm" y0="20.5mm" dx="123.75mm" dy="138mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6852" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89.5mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="PEARL" part="VM-6853" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Your Design: CD/DVD labels, 3 per sheet -->
<!-- =================================================================== -->
<Template brand="Your Design" part="VM-6854" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="3.2mm"/>
<Layout nx="1" ny="2" x0="3mm" y0="3mm" dx="120.4mm" dy="173mm"/>
<Layout nx="1" ny="1" x0="89mm" y0="89mm" dx="120.4mm" dy="120.4mm"/>
</Label-cd>
</Template>
</Glabels-templates>
File diff suppressed because it is too large Load Diff
+303
View File
@@ -0,0 +1,303 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- Sheetlabels products. -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- SheetLabels: Rectangular Labels, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL1" size="US-Letter" _description="Rectangular labels">
<Meta category="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">
<Markup-margin size="0.125in"/>
<Layout nx="1" ny="4" x0="1.5in" y0="0.625in" dx="7.5in" dy="2.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Rectangular Labels, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL10" size="US-Letter" _description="Rectangular labels">
<Meta category="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">
<Markup-margin size="3.175mm"/>
<Layout nx="1" ny="4" x0="53.2mm" y0="12.7mm" dx="127.5mm" dy="68.8mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Address Labels, 20 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL100" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Address Labels, 14 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL101" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7"
x0="0.15625in" y0="0.833333333in" dx="4.1875in" dy="1.333333333in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Shipping Labels, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL102" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL102"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Shipping Labels, 6 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL104" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Return Address Labels, 80 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL105" size="US-Letter" _description="Return Address Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Round Labels, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL108" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL108"/>
<Label-round id="0" radius="1.25in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/>
</Label-round>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Filing Labels, 30 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL109" size="US-Letter" _description="Filing Labels">
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="15" x0="0.53125in" y0="0.5in" dx="4in" dy="0.666666667in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: CD/DVD Labels (face only), 2 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL110" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="144pt" y0="36pt" dx="351pt" dy="396pt"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: CD/DVD Labels (face only), 3 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL113" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<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">
<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="9.4cm" y0="8.25cm" dx="0pt" dy="0pt"/>
<Layout nx="1" ny="1" x0="0.7cm" y0="15.8cm" dx="0pt" dy="0cm"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Mailing Labels, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL116" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Diskette Labels, 2_3/4'' x 2_3/4'', 9 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL121" size="US-Letter" _description="Diskette Labels">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: CD/DVD Labels (face only), 2 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL122" size="US-Letter"
_description="CD/DVD Labels (Disc Labels)">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
<Markup-line x1="3.125in" y1="2.3125in" x2="4.625in" y2="2.3125in"/>
<Markup-line x1="2.3125in" y1="0" x2="2.3125in" y2="1.5in"/>
<Markup-line x1="2.3125in" y1="3.125in" x2="2.3125in" y2="4.625in"/>
<Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="0" dy="5in"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Round Labels, 20 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL123" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL123"/>
<Label-round id="0" radius="1in" waste="0.03in">
<Markup-margin size="0.125in"/>
<Layout nx="4" ny="5" x0="0.156in" y0="0.375in" dx="2.062in" dy="2.062in"/>
</Label-round>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Round Labels, 6 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL128" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL128"/>
<Label-round id="0" radius="1.75in" waste="0in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.5in" y0="0.2in" dx="4in" dy="3.55in"/>
</Label-round>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Round Labels, 1 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL129" size="US-Letter" _description="Round Labels">
<Meta category="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">
<Markup-margin size="0.125in"/>
<Layout nx="1" ny="1" x0="1.5in" y0="2.75in" dx="8.5in" dy="5.5in"/>
</Label-round>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: VCR Labels, 1_7/8'' x 3_1/16'', 10 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL302" size="US-Letter"
_description="Video Tape Face Labels">
<Meta category="label"/>
<Meta category="media"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL302"/>
<Label-rectangle id="0" width="220" height="133" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Mailing Labels, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL540" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL540"/>
<Label-rectangle id="0" width="4.25in" height="2in" round="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: Address Labels, 1'' x 4'', 20 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL550" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Meta product_url="http://www.sheet-labels.com/labels/SL550"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- SheetLabels: CD/DVD Labels (face only), 2 per sheet -->
<!-- =================================================================== -->
<Template brand="SheetLabels" part="SL563" size="US-Letter"
_description="CD/DVD Labels (Disc Labels)">
<Meta category="label"/>
<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">
<Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
<Markup-line x1="3.125in" y1="2.3125in" x2="4.625in" y2="2.3125in"/>
<Markup-line x1="2.3125in" y1="0" x2="2.3125in" y2="1.5in"/>
<Markup-line x1="2.3125in" y1="3.125in" x2="2.3125in" y2="4.625in"/>
<Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="0" dy="5in"/>
</Label-cd>
</Template>
</Glabels-templates>
+30
View File
@@ -0,0 +1,30 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Uline US-Letter products -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<Template brand="Uline" part="S-5044" 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>
</Glabels-templates>
+54
View File
@@ -0,0 +1,54 @@
<?xml version="1.0"?>
<Glabels-vendors>
<Vendor name="Agipa" url="http://www.apli-agipa.com/" />
<Vendor name="APLI" url="http://www.apli.com/softwareyplantillas/apli_soft.aspx"/>
<Vendor name="Ascom" url="http://www.hovat.co.uk/hovat_labelling.html" />
<Vendor name="Avery" url="http://www.avery.com/" />
<Vendor name="Brother" url="http://www.brother-usa.com/" />
<Vendor name="Dataline" url="http://www.esselte-dataline.com/uk/" />
<Vendor name="DECAdry" url="http://www.decadry.com/" />
<Vendor name="Desmat" url="www.desmat.com/" />
<Vendor name="DataBecker" url="http://www.databecker.de/shop/zubehoer/index.php" />
<Vendor name="Dymo" url="http://global.dymo.com/" />
<Vendor name="Endisch" url="http://www.endihaft.de/en/" />
<Vendor name="Geha" url="http://www.geha.de/index.php?id=1041" />
<Vendor name="Great Gizmos" url="http://www.greatgizmos.co.uk/product_ranges.html" />
<Vendor name="Hema" url="http://hema.nl/nl-nl/winkel/kantoor/papier.aspx" />
<Vendor name="Hama" url="http://www.hama.de/produkte/pc_+_notebook/buerobedarf/index.hsp" />
<Vendor name="Herma" url="http://www.herma.de/" />
<Vendor name="Igepa" url="http://www.igepagroup.com/" />
<Vendor name="Impact" url="http://www.impactlabel.com/" />
<Vendor name="Kingdom" url="http://www.kingdom.com/Kingdom-Label-Center-s/20.htm"/>
<Vendor name="Kores" url="http://www.kores.com/products/" />
<Vendor name="JAC" url="http://www.tagswiss.ch/deutsch/Etiketten/" />
<Vendor name="Maco" url="http://www.maco.com/" />
<Vendor name="Memorex" url="http://www.memorex.com/en-us/Accessories/Disc-Labeling/"/>
<Vendor name="Merax" url="http://www.merax.com/"/>
<Vendor name="Meritline" url="http://www.meritline.com/" />
<Vendor name="Micro Application" url="http://www.microapp.com/" />
<Vendor name="Neato" url="http://www.neato.com/" />
<Vendor name="Netc" url="http://netcllc.com/site/home.php" />
<Vendor name="OfficeMax" url="http://www.officemax.com/office-supplies/paper" />
<Vendor name="Online Labels" url="http://www.onlinelabels.com/" />
<Vendor name="PEARL" url="http://www.pearl.de/" />
<Vendor name="Pressit" url="http://www.pressit.com/label-applicator-systems.html"/>
<Vendor name="Poundland" url="http://www.poundland.co.uk/" />
<Vendor name="Q_CONNECT" url="http://www.q-connect.com/" />
<Vendor name="Rayfilm" url="http://www.rayfilm.cz/en/" />
<Vendor name="Ryman" url="http://www.ryman.co.uk/" />
<Vendor name="Sanwa" url="http://www.sanwapaper.com/" />
<Vendor name="Sattleford" url="http://www.pearl.de/" />
<Vendor name="SheetLabels" url="http://www.sheet-labels.com/" />
<Vendor name="Sigel" url="http://www.sigel.de/de_de/" />
<Vendor name="Southworth" url="http://shop.southworth.com/cats.php?cat=1" />
<Vendor name="Staples" url="http://www.staples.de/burobedarf-2" />
<Vendor name="Stomper" url="http://www.cdstomper.com/" />
<Vendor name="Uline" url="http://www.uline.com/" />
<Vendor name="Viking" url="http://www.viking.de/" />
<Vendor name="Worldlabel" url="http://www.worldlabel.com/" />
<Vendor name="Your Design" url="http://www.pearl.de/" />
<Vendor name="Zweckform" url="http://www.avery-zweckform.com/" />
</Glabels-vendors>
+245
View File
@@ -0,0 +1,245 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<!-- -->
<!-- Worldlabel US-Letter products -->
<!-- -->
<!-- ******************************************************************** -->
<!-- ******************************************************************** -->
<Template brand="Worldlabel" part="WL-25" size="US-Letter" _description="Return Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="1.75in" height="0.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="20" x0="0.28125in" y0="0.5in" dx="2.0625in" dy="0.5in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-75" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="10" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="1in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-100" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.333333333in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="7"
x0="0.15625in" y0="0.833333333in" dx="4.1875in" dy="1.333333333in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-125" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="2in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="5" x0="0.1625in" y0="0.5in" dx="4.1875in" dy="2in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-150" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="3.333333333in" round="0.125in">
<Markup-margin size="0.125in"/>
<Layout nx="2" ny="3" x0="0.15625in" y0="0.5in" dx="4.1875in" dy="3.333333333in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-157" size="US-Letter" _description="File Folder Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="3.4375in" height="0.9375in" round="0.0625in" waste="5pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="9" x0="0.49755in" y0="0.51125in" dx="4.0674in" dy="1.13in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-159" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="8.12992in" height="5in" round="0.0625in" waste="0">
<Markup-margin size="0.0625in"/>
<Layout nx="1" ny="2" x0="0.18504in" y0="0.5in" dx="0" dy="5in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-160" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.375in" height="1.25in" round="0.0625in" waste="0.125in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="6" x0="0.3725in" y0="1.125in" dx="2.69in" dy="1.5in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-161" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="1.25in" round="0.0625in" waste="5pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.375in" y0="1.125in" dx="4in" dy="1.5in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-171" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="2.0in" round="0.0625in" waste="0.125">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="4" x0="0.375in" y0="1.125in" dx="4.0in" dy="2.25in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-172" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.75in" height="3.0in" round="0.0625in" waste="0.125">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="3" x0="0.375in" y0="0.625in" dx="4.0in" dy="3.375in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-175" size="US-Letter" _description="Full Sheet Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="8.5in" height="11.in" round="0">
<Markup-margin size="0.0625in"/>
<Layout nx="1" ny="1" x0="0" y0="0" dx="0" dy="0"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-200" size="US-Letter" _description="Filing Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="3.4375in" height="0.666666667in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="15" x0="0.53125in" y0="0.5in" dx="4in" dy="0.666666667in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-225" size="US-Letter" _description="Diskette Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="2.75in" height="2.75in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="3" x0="0.125in" y0="0.5in" dx="2.75in" dy="3in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-250" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4in" height="1.5in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="6" x0="0.1875in" y0="1in" dx="4.125in" dy="1.5in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-325" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="0.8125in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="4" ny="6" x0="0.4157in" y0="0.549in" dx="2.0145in" dy="1.6554in"/>
</Label-round>
</Template>
<Template brand="Worldlabel" part="WL-350" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.25in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="4" x0="0.21in" y0="0.425in" dx="2.75in" dy="2.515in"/>
</Label-round>
</Template>
<Template brand="Worldlabel" part="WL-375" size="US-Letter" _description="Round Labels">
<Meta category="label"/>
<Meta category="round-label"/>
<Label-round id="0" radius="1.65625in" waste="0pt">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="3" x0="0.6406in" y0="0.4844in" dx="3.9063in" dy="3.3594in"/>
</Label-round>
</Template>
<Template brand="Worldlabel" part="WL-625" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="4.25in" height="2in" round="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="5" x0="0in" y0="0.5in" dx="4.25in" dy="2in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-875" size="US-Letter" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="2.625in" height="1in" round="0.0625in">
<Markup-margin size="0.0625in"/>
<Layout nx="3" ny="10" x0="0.1875in" y0="0.5in" dx="2.75in" dy="1in"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-1125" size="US-Letter" _description="Video Tape Face Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="220" height="133" round="5">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="80" y0="60.5" dx="236" dy="133"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-1150" size="US-Letter" _description="Video Tape Spine Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="414" height="48" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="15" x0="99" y0="36" dx="0" dy="48"/>
</Label-rectangle>
</Template>
<Template brand="Worldlabel" part="WL-1200" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="166.5pt" hole="58.5pt" waste="9pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="2" x0="144pt" y0="36pt" dx="351pt" dy="396pt"/>
</Label-cd>
</Template>
<Template brand="Worldlabel" part="WL-5075" size="US-Letter" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="2.3125in" hole="0.8125in" waste="0.0625in">
<Markup-margin size="0.0625in"/>
<Markup-line x1="0" y1="2.3125in" x2="1.5in" y2="2.3125in"/>
<Markup-line x1="3.125in" y1="2.3125in" x2="4.625in" y2="2.3125in"/>
<Markup-line x1="2.3125in" y1="0" x2="2.3125in" y2="1.5in"/>
<Markup-line x1="2.3125in" y1="3.125in" x2="2.3125in" y2="4.625in"/>
<Layout nx="1" ny="2" x0="1.9375in" y0="0.6875in" dx="0" dy="5in"/>
</Label-cd>
</Template>
<Template brand="Worldlabel" part="WL-5100" size="US-Letter" _description="Shipping Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="3.5in" height="5in" round="0.0625in" waste="0in">
<Markup-margin size="0.0625in"/>
<Layout nx="2" ny="2" x0="0.5in" y0="0.5in" dx="4in" dy="5in"/>
</Label-rectangle>
</Template>
</Glabels-templates>
+289
View File
@@ -0,0 +1,289 @@
<?xml version="1.0"?>
<Glabels-templates>
<!-- ******************************************************************** -->
<!-- Zweckform A4 products -->
<!-- ******************************************************************** -->
<!-- =================================================================== -->
<!-- Zweckform 4761: Lever Arch File Labels, 192 x 61 mm, 4 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4761" size="A4" _description="Lever Arch File Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="544.25" height="172.9" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="4" x0="25" y0="75" dx="544.25" dy="172.9"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3477: Adress labels -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3477" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="105mm" height="41mm" round="0mm" x_waste="0mm" y_waste="0mm">
<Markup-margin size="3.2mm"/>
<Layout nx="2" ny="7" x0="0mm" y0="4.93mm" dx="105mm" dy="41mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3651: Rectangular Labels, 52 x 29.5 mm, 40 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3651" size="A4" _description="Rectangular Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="147.4016" height="83.6220" round="0">
<Markup-margin size="5"/>
<Layout nx="4" ny="10" x0="2.834" y0="2.834" dx="147.4016" dy="83.6220"/>
</Label-rectangle>
</Template>
<!-- ====================================================================-->
<!-- Zweckform 3654: CD Labels 2 per Template -->
<!-- ====================================================================-->
<Template brand="Zweckform" part="3654" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.78" hole="58.09" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="131.78" y0="58.7998" dx="0" dy="387.97"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3659: Rectangular Labels, 97 x 42.125 mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3659" size="A4" _description="Mailing Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="274" height="120.5" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="6" x0="22.68" y0="60" dx="274" dy="120.5"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3669: Rectangular Labels, 70 x 50.8mm, 15 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3669" size="A4" _description="QSL-Karten Etiketten 70mm x 50,8mm">
<Meta category="label"/>
<Label-rectangle id="0" width="198.425" height="144" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="5" x0="0" y0="61" dx="198.425" dy="144"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3688: Ordnerruecken Labels -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3688" size="A4" _description="File Back Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="544.252pt" height="172.913pt" round="0pt" waste="0pt">
<Markup-margin size="9.07087pt"/>
<Layout nx="1" ny="4" x0="28.3465pt" y0="76.5354pt" dx="544.252pt" dy="172.913pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 4732: Multi-purpose Stick+Lift labels -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4732" size="A4" _description="Multi-purpose Stick+Lift Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="102.047pt" height="48.189pt" round="5.66929pt" waste="0pt">
<Markup-margin size="5.66929pt"/>
<Layout nx="5" ny="16" x0="31.1811pt" y0="36.8504pt" dx="107.717pt" dy="48.189pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 4746: Video Labels, 147,32 x 20 mm, 13 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4746" size="A4" _description="Video Labels (back)">
<Meta category="label"/>
<Meta category="media"/>
<Label-rectangle id="0" width="416.6" height="56.6929" round="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="13" x0="88.8377" y0="52.2425" dx="416.6" dy="56.6929"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 4780: Allround Labels, 48,5 x 25,4 mm, 40 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4780" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="137.48" height="72" round="0">
<Markup-margin size="5"/>
<Layout nx="4" ny="10" x0="23" y0="53.8898" dx="137.48" dy="72"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3474: Address Labels, 70 x 37 mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3474" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="70mm" height="37mm" round="0">
<Markup-margin size="0"/>
<Layout nx="3" ny="8" x0="0" y0="0" dx="70mm" dy="37mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3475: Address Labels, 70 x 30 mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3475" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="198.570" height="102.121" round="0">
<Markup-margin size="0"/>
<Layout nx="3" ny="8" x0="0" y0="12.566" dx="198.570" dy="102.121"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3490: Rectangular Labels, 70 x 36 mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3490" size="A4" _description="Rectangular Copier Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="198.425" height="102.047" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="8" x0="" y0="12.557" dx="198.425" dy="102.047"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 4781: Rectangular Labels, 97 x 42.3 mm, 12 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4781" size="A4" _description="Rectangular Copier Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="274.960" height="119.905" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="6" x0="22.677" y0="61.030" dx="274.960" dy="119.905"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 6091: Correction and Cover, 64.6 x 33.8 mm, 24 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="6091" size="A4" _description="Correction and Cover-up Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="183.118" height="95.811" round="0">
<Markup-margin size="5"/>
<Layout nx="3" ny="8" x0="22.961" y0="37.502" dx="183.118" dy="95.881"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 6015: CD Labels, 2 per Template -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="6015" size="A4" _description="CD/DVD Labels">
<Meta category="label"/>
<Meta category="media"/>
<Label-cd id="0" radius="165.827" hole="58.110" waste="5">
<Markup-margin size="5"/>
<Layout nx="1" ny="2" x0="131.811" y0="60.746" dx="0" dy="388.346"/>
</Label-cd>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 6021: Allround Labels -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="6021" size="A4" _description="Allround Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="130.392pt" height="47.9055pt" round="0pt" waste="0pt">
<Markup-margin size="5pt"/>
<Layout nx="4" ny="16" x0="24.0945pt" y0="39.6853pt" dx="136.913pt" dy="47.9055pt"/>
</Label-rectangle>
</Template>
<!-- =============================================================== -->
<!-- Zweckform J8435: CD Inlets Booklet part -->
<!-- =============================================================== -->
<Template brand="Zweckform" part="J8435A" size="A4" _description="CD Booklet">
<Meta category="media"/>
<Label-rectangle id="0" width="155mm" height="125mm" round="0">
<Markup-margin size="2mm"/>
<Markup-line x1="32mm" y1="0mm" x2="32mm" y2="125mm"/>
<Layout nx="1" ny="1" x0="27.5mm" y0="22mm" dx="155mm" dy="125mm"/>
</Label-rectangle>
</Template>
<Template brand="Zweckform" part="32250A" equiv="J8435A"/>
<!-- =============================================================== -->
<!-- Zweckform J8435: CD Inlets Inlet part -->
<!-- =============================================================== -->
<Template brand="Zweckform" part="J8435B" size="A4" _description="CD Inlet">
<Meta category="media"/>
<Label-rectangle id="0" width="155mm" height="122mm" round="0">
<Markup-margin size="2mm"/>
<Markup-line x1="8.5mm" y1="0mm" x2="8.5mm" y2="122mm"/>
<Markup-line x1="146.5mm" y1="0mm" x2="146.5mm" y2="122mm"/>
<Layout nx="1" ny="1" x0="27.5mm" y0="21mm" dx="155mm" dy="122mm"/>
</Label-rectangle>
</Template>
<Template brand="Zweckform" part="32250B" equiv="J8435B"/>
<!-- =================================================================== -->
<!-- Zweckform 32010: Business Cards, 54.0 x 85.0 mm, 10 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="32010" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="240.94" height="153.07" round="0">
<Markup-margin size="5"/>
<Layout nx="2" ny="5" x0="40" y0="40" dx="269" dy="153"/>
</Label-rectangle>
</Template>
<!-- ============================================================ -->
<!-- Avery 32015: Business Cards -->
<!-- ============================================================ -->
<Template brand="Zweckform" part="32015" size="A4" _description="Business Cards">
<Meta category="card"/>
<Meta category="business-card"/>
<Label-rectangle id="0" width="85mm" height="54mm" round="0mm">
<Markup-margin size="5mm"/>
<Layout nx="2" ny="4" x0="17mm" y0="31.5mm" dx="91mm" dy="60mm"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 4760: File Labels, 192 x 38 mm, 7 per sheet -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="4760" size="A4" _description="File Back Labels">
<Meta category="label"/>
<Label-rectangle id="0" width="544.252pt" height="107.717pt" round="5.66929pt" waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="1" ny="7" x0="25.5118pt" y0="43.7386pt" dx="544.252pt" dy="107.717pt"/>
</Label-rectangle>
</Template>
<!-- =================================================================== -->
<!-- Zweckform 3348: Adress Labels. -->
<!-- =================================================================== -->
<Template brand="Zweckform" part="3348" size="A4" _description="Address Labels">
<Meta category="label"/>
<Meta category="mail"/>
<Label-rectangle id="0" width="189.921pt" height="107.717pt" round="0pt" x_waste="0pt" y_waste="0pt">
<Markup-margin size="9pt"/>
<Layout nx="3" ny="7" x0="5.66929pt" y0="56.6929pt" dx="198.425pt" dy="107.717pt"/>
</Label-rectangle>
</Template>
</Glabels-templates>