Abstract comments showing up in footnotes
Books I'm adding to my library from Amazon or WorldCat that have abstracts, now embed the abstract content into the middle of the footnote (but it doesn't happen in the bibliography). I manually delete the abstract information from within the footnote as a workaround, but I'm thinking this is a problem. Is anyone else having this problem? If so, any thoughts on how to resolve it?
<else-if type="entry-dictionary" match="any">
<choose>
<if match="any" variable="abstract">
<text variable="abstract" font-style="italic"/>
</if>
<else>
<text variable="container-title" font-style="italic"/>
</else>
</choose>
</else-if>
<else>
<text variable="abstract" text-case="title" font-style="normal" suffix=" "/>
<text variable="collection-number"/>
</else>
</choose>
I'm the librarian at SEBTS.
It's intentional. In short, our dissertation style guide is a variation on SBL. We require shortened forms of titles in the footnotes and full titles within the bibliography. We didn't see a native way within Zotero to facilitate that, so we improvised and utilized the abstract field to make it happen.
--Jason
Instead, use the ability of Zotero to pick up data from the extra field as described here and either use a CSL variable like annote or, more elegantly, uses
collection-title-short: DW
and<text variable="collection-title" form="short"/>
in the code.