<?xml version="1.0"?>

<!-- This is a test document for 2-of-5 interleaved barcodes generator -->

<doc title="2-of-5 interleaved barcodes">
  <para>
    This document contains several examples of 2-of-5 interleaved barcodes.
    A special stylesheet interprets data given in a string of digits,
    encodes it using 2-of-5 code into a sequence of bar states and then draws them in SVG.
  </para>

  <para>
    Please refer to explanations inside of the 2of5i.xsl stylesheet for more information
    about the stylesheet usage.
  </para>
  
  <barcodes>
    <barcode value="12345678" addchecksum="false">
      <description>
        Barcode without checksum. Even number of digits.
      </description>
    </barcode>
    <barcode value="78901" addchecksum="false">
      <description>
        Barcode without checksum.
        Odd number of digits - leading non-significant null will be added to preserve sequence parity.
      </description>
    </barcode>
    <barcode value="34127630367" addchecksum="true">
      <description>
        Barcode with checksum. Odd number of data digits, even number of digits including checksum.
      </description>
    </barcode>
    <barcode value="341276303671" addchecksum="true">
      <description>
        Barcode with checksum.
        Even number of data digits, odd number of digits including checksum
        - leading non-significant null will be added to preserve sequence parity.
      </description>
    </barcode>
  </barcodes>
</doc>