field "volume" for multilingual zotero
Hi I am using MLZ 3.0b3. I would like to report that the field "volume" has caused an unexpected error. If "volume" is used, zotero in word will cause a "text is undefined" error.
If I drag an entry from firefox zotero to any textarea I will find something like "undefine6", if "volume" is 6.
thanks for your attention!
If I drag an entry from firefox zotero to any textarea I will find something like "undefine6", if "volume" is 6.
thanks for your attention!
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Upgrade Storage
I am using a customized style derived from the Chicago Manual of Style. The csl is posted here.
http://freetexthost.com/ml6rpvkqpo
The fault is caused by a cs:text node followed by a cs:number node, wrapped in a cs:group with no delimiter:
<group>
<text term="volume" suffix=". "/>
<number variable="volume"/>
</group>
You can avoid the bug for the present by moving the suffix on the first child (in this example) to the group delimiter:
<group delimiter=". ">
<text term="volume"/>
<number variable="volume"/>
</group>