1 / 23

Labels, Labels, and more Labels

Labels, Labels, and more Labels. Lynn Floyd Anderson County Library SCLENDS. Getting to Label Printing. Item Status Buckets Holdings View Actions->Show-> Print Labels. Types of Label Printers. Continuous Feed Printers Dymo LabelWriters TSC Printers Zebra Brother Sheet Feed Printers

ddominique
Télécharger la présentation

Labels, Labels, and more Labels

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Labels, Labels, and more Labels Lynn Floyd Anderson County Library SCLENDS

  2. Getting to Label Printing • Item Status • Buckets • Holdings View • Actions->Show-> Print Labels

  3. Types of Label Printers • Continuous Feed Printers • Dymo LabelWriters • TSC Printers • Zebra • Brother • Sheet Feed Printers • Your basic Printers

  4. Paper Sizes with Continuous Feed Labels Depending on your printer you may need to set paper sizes in to your Printer settings. Some printers have default paper sizes that you can use. Hint: Duplicate your Printer Drivers and set the preferences for that driver for each Label Size you use. Ex. If using different labels for Spine and Pocket, use one driver for the Spine label and then another for the Pocket.

  5. Browser Settings • Make sure the margins are set to Zero all the way around. • The default margins will not allow Evergreen to manage the margins with in the Label printing CSS

  6. Formatting your Labels • Uses basic HTML and CSS with Angular JS • uses Angular JS Variables • {{copy.barcode}} • {{get_bib_for(copy).title}}

  7. Basic Text Formatting

  8. Formatting Dates and Times https://angular.io/api/common/DatePipe

  9. Limiting Variables • limitTo

  10. Adding a scannable barcode • Barcode Fonts • Codabar Medium • Interleave 3 of 9 • Start and Stop Characters • <div align="Center"; style= "font-family: 'CodabarMedium';">B{{copy.barcode}}D</div> B1234567D

  11. Saving Label Templates Enter name of template in Template, or choose Template you want to modify Choose your Printer Context. You can set multiple printers in hatch and set the label to the correct printer in hatch Click Save NOTE: If you modify and template it needs to be saved and then Applied before it can actually be printed.

  12. Importing - Exporting • Remember to Save • Exporting templates As you can only save a template on to the computer you are working on you will need to export the template if you have more than one computer that prints labels • Export. • Saves a “exported_label_templates.json” file in the downloads folder • Importing Templates • Click Import. • Navigate to and select the template that you want to import. Click Open. • Click OK. • Click Save. • Click OK.

  13. Spine Labels • Can be edited in the Label Printing module • This does not effect the actual call number in the database. • If printing multiple items with the same call number, it only shows up once in the editor. If you edit it you edit them all

  14. Demo Continuous Feed 3.2 and before

  15. <table class="labels" style="page-break-after: always;" ng-repeat="copy in copies"><tr valign="top"><td> <!-- Pocket Label contents --> <pre class="pocket" style="border:none" ng-show="true"> {{copy['call_number.label']}} {{get_bib_for(copy).author |limitTo:30}} {{get_bib_for(copy).title | limitTo:35}} <span style="float:right">{{copy['create_date'] | date:'shortDate'}}</span> {{copy.barcode}} <span style="float:right">{{copy['circ_lib.shortname']}}</span> <span style= "font-family:'CodabarMedium'; font-size:large; font-weight:normal;">B{{copy.barcode}}D</span></pre></td></tr></table>

  16. <table class="labels" style="page-break-after: always;" ng-repeat="copy in copies"><tr valign="top"><td> <!-- Spine Label contents --> <pre class="spine" style="line-height: 98%;border:none" ng-show="true"> {{get_cn_for(copy)}} </pre></td></tr></table>

  17. Sheet feed Labels • In 3.3 but branch may be loaded into your system. • Current Continuous feed labels will continue to work • Labeling of fields are more informative

  18. {{col.c ? col.c['call_number.label'] : ''}} {{col.c ? get_bib_for(col.c).author : ''}} {{col.c ? (get_bib_for(col.c).title | limitTo:35) : ''}} {{col.c ? col.c.barcode : ''}} {{col.c ? col.c['circ_lib.shortname'] : ''}} <span style= "font-family:'CodabarMedium'; font-size:large; font-weight:normal;">B{{col.c ? col.c.barcode : ''}}D</span>

  19. Demo Sheet Feed in 3.3

  20. QUESTIONS????

More Related