<?xml version="1.0" standalone="no"?>
<!-- showing 2 different ways that quantities.
     may serialize string data. Either as space
    separated, or by use of tagged delimiting
-->
<mydocument 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://ivoa.org/Quantity MyStdDocument.xsd"
      xmlns="http://ivoa.org/Quantity"
>
	<quantity name="PA" description="Rotation angle to the major axis of the quantity distribution" size="10">
            <units>deg</units>
            <integer type="decimal" width="4"/>
            <values>2 -30 -85 74 16 57 65 -3 87 81</values>
         </quantity>
         <quantity name="Ref" description="Reference" size="10">
            <string width="26"/>
            <!-- Because string contain whitespace that arent spacing, we need to
                 use a tagged prescription.
              -->
            <values>
                <value>Florov,B.H.,Izv.</value>
                <value>Vasilevskis.S.et al.,</value>
                <value>Sanders,W.L.,</value>
                <value>Herzog,A.D.et al.,</value>
                <value>Lenham,A.P.,</value>
                <value>Kerridge,S.J.et al.,</value>
                <value>Tian K.P.et al., Annals of</value>
                <value>Upgren,A.R.,</value>
                <value>Mills,G.A.,   Journal des</value>
                <value>Jefferys,W.H.,</value>
            </values>
         </quantity>
</mydocument>
