Problem with superscript and Word plugin
I've upgraded to zotero 2.0rc2 (directly from zotero 1.0.10) yesterday and installed the compatible word plugin (3.0a3).
I've a problem with a personal style which uses superscript vertical-align: whereas it should only put in superscript the"e" (see below), it does not stop "superscripting" and all the subsequent references are superscript. Here is the code:
[MS Word 2002, winXP SP3, FF 3.5.7]
I've a problem with a personal style which uses superscript vertical-align: whereas it should only put in superscript the"e" (see below), it does not stop "superscripting" and all the subsequent references are superscript. Here is the code:
<macro name="edition">
<choose>
<if is-numeric="edition">
<group delimiter=" ">
<number variable="edition" form="ordinal"/>
<text value="e" vertical-align="sup"/>
<text term="edition" form="short" suffix="."/>
</group>
</if>
<else>
<text variable="edition"/>
</else>
</choose>
</macro>
[MS Word 2002, winXP SP3, FF 3.5.7]
vertical-align="baseline"
in the next line?
<text term="edition" form="short" suffix="." vertical-align="baseline"/>
But, surprisingly, if I add "sub" instead of "baseline", the subsequent references are subscripted:
<text term="edition" form="short" suffix="." vertical-align="sub"/>
Csl syntax summary indicates "baseline" but is it right?
chrome://zotero/content/xpcom/csl.js
doesn't implement it. I got nothing then.
ah, here it is - slightly different, but potentially related:
http://forums.zotero.org/discussion/10883/bug-switching-from-superscript-to-apa-results-in-superscript-citations/#Item_1
If developers can have a look, that would be great!
Would it be possible to add "baseline" support in zotero implementation of csl? Or is it a mere plugin bug?
Apparently the bug is not fixed it. (v. 2.0.3).
Can anybody suggest a work-around? This looks like a pain to fix (I have _many_ references already entered in the document).
Thanks.
Gracile was working on a custom style that's not in the repository.
How are you seeing this problem? Using which style?
Perhaps I should post this comment there?
Oh, and I found a work-around using search-and-replace that I think works.
With a given citation style (AIP), I insert bibliography in MSword 2003 and should appear with number in superscript and the rest of the text (author, publication) in normal text.
The original style has the following
<layout suffix=".">
<text variable="citation-number" vertical-align="sup"/>
<text macro="author" prefix=" " suffix=", "/>
....
I tried to create a new style where I made the following change
<layout suffix=".">
<text variable="citation-number" vertical-align="sup"/>
<text macro="author" prefix=" " suffix=", " vertical-align="baseline"/>
....
but it didn't work. I think this may be a problem with the word plugin
Have a look on this thread.
If you don't feel comfortable with that, just wait the next Zotero 2.0 release: the patch will be applied by default.
EDIT: direct link to Frank's patch: http://zotero-dev.googlegroups.com/web/rtf-superscripting.patch