How do you handle a non-number number field?
I have an odd-ball like "2014-1" in a volume field. How do I handle it? Using cs:number variable="volume" prefix="vol." will split the field into vol.2014, -vol. 1. CSL won't take a number field into cs:text either.
Yes, that I understand. The problem is cs:number will split "2014-1" into two if there is an affix. cs:text works, so problem solved.
<number variable="volume" prefix="vol."/>
try something like this
<group>
<label variable="volume" form="short"/>
<number variable="volume"/>
</group>
Using a localised term is generally better than hard-coding strings in the affixes.