Series Abbreviation
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
If a citation has been hand edited, and is no longer updated by Zotero (we would say "updating" in that case, rather than "syncing"), then indeed the Abbreviation Filter will have no effect for that citation; it will not change in the document until the manual changes are overridden by opening the citation for (Zotero) editing and re-enabling automatic updates to that citation.
Unless I hear otherwise, I'll treat this bug report as fixed.
If the style might be updated for wider download that'd be great too, though it makes me wonder—if this is a common change that needs to occur to the various styles, why does it require it be made inline to the style and not separately... indeed, why not by default support certain defaults which can be overridden but which would mean every style would work?
<text variable="collection-title" form="short"/>
If you find the place where that happens in the style (at about line 330) and add the form="short" attribute, the plugin will pick up the field and put it in the abbreviation list.
Note that if you want the series abbreviation only in footnotes, and not in the bibliography, you will need to copy and rename that macro, and make an adjustment in either the citation or the bibliography section. Mostly because it would lead us into chaos and confusion. :-)
<macro name="collection-title">
<text variable="collection-title" form=“short”/>
<text variable="collection-number" prefix=" "/>
</macro>
<macro name="collection-title-full“>
<text variable="collection-title"/>
<text variable="collection-number" prefix=" "/>
</macro>
and then within the citation section there'll be:
<text macro="collection-title" prefix=", "/>
and within the bibliographic section:
<text macro="collection-title-full” prefix=". "/>
Right?
Secondly, is it possible to then generate for a paper which abbreviations have been used, in order to provide another section (e.g., above the bibliography) that details the definitions for the abbreviations used?
Thanks.
On exporting a list of abbreviations used in the document, that's a good idea. It's not currently possible, but I'll look into it. For a start, at least, we'll aim for just a primitive list that you can paste into the word processor for manual formatting.
To clarify, I'm using 4.0.26.1 standalone on Mac + LibreOffice.
Abbreviations for zotero 1.0.200
- Style (label with empty space beneath it)
- Suppress Jurisdiction Names with a textbox beneath to add a Jurisdiction (assumed irrelevant for me as I'm not doing a law paper)
- Lists with an empty button beneath it which stretches across the screen.
- Import from defaults: with "select a resource" dropdown that does nothing.
- Radio buttons [fill gaps (selected), override local entries, replace local list]
- Import / Export buttons that do nothing + Cancel button
I tried adding "Foobar" for the Series for a particular library item, restarted apps and recreated the test doc, inserted the footnote, then tried to open the abbrev. list again—still nothing. So not sure what I'm missing?
Also, does this only work for entries with a series title, or does it work generally for Library items with a long title? e.g., the below linked lexicon (Full title: "The Hebrew and Aramaic Lexicon of the Old Testament") is commonly referred to by the abbreviation HALOT. But in the bibliography I'd need the full title—and similarly for other such resources.
So, would you mind also confirming if the previous customisation we'd talked about will achieve this?
Thanks
https://books.google.com.au/books?id=PFRQYAAACAAJ&dq=isbn:9004111514&hl=en&sa=X&ei=GIPxVJfrJ4uQ8QWKx4LQCA&ved=0CB0Q6AEwAA
You should be able to use form="short" on any ordinary field to get an entry in one of the lists.
I'm not sure about the customization you mention. If the (now running) plugin doesn't cover it, please post back with a few more details to jog my memory.
But I'm not seeing any change in the document after closing the dialog. Am I missing something simple?
Thanks!
If it's not quite working that way, try to work out the exact steps needed to reproduce the failure. If I can reproduce an error here, I can fix it.
I'm assuming that would require updating the title-note macro with form="short" similar to the collection-title macro, but what would then distinguish this from a subsequent reference for those footnotes that do not have an abbreviation?
That's what we need for legal referencing, and in MLZ, that is the way legal materials (only) work. I was pressed by the CSL developers not to go that route with ordinary resources, because it would cause confusion.
It would be possible to do this, with (yet another) processor patch plugin. It would take me awhile to work up the time for that, but it's possible. What sort of time-frame?
Does that option already exist?
Then for producing an abbreviations list (and in order to make the feature generally useful) if there was a button for inserting one of the custom sections from the csl, driven perhaps by tagged items that appear in the document?
e.g., csl might have this:
<custom name="abbreviations" tags="abbreviated ..." hanging-indent="true" et-al-min="11" et-al-use-first="7" entry-spacing="1" ...>
<sort>...</sort>
<layout suffix=".">
...
</layout>
</custom>
In terms of a time-frame, all this is really nice-to-have given the price :-) I have four more assessments this semester that would make use of it. One due Friday week (which is obviously too soon given you've other priorities), and then in April and May. And if it's already possible to make use of library tags in the csl that would help me for now.
Thanks again!
Cool, that'll help with citations.
The only question remaining then would be producing the extra section (listing abbreviations and their definitions). Is it already possible to do this
If the item has a short title, I can look to include a "(Hereafter cited as ...)" as per http://writing2.richmond.edu/writing/wweb/tura.html
It's a pretty simple change.
$ diff turabian-fullnote-bibliography.csl turabian-fullnote-bibliography-hereafters.csl
602a603,619
> <macro name="hereafter-note">
> <choose>
> <if variable="title">
> <choose>
> <if variable="title-short">
> <text macro="hereafter-reference" prefix="(Hereafter cited as " suffix=")"/>
> </if>
> </choose>
> </if>
> </choose>
> </macro>
> <macro name="hereafter-reference">
> <group delimiter=", ">
> <text macro="contributors-short"/>
> <text macro="title-short"/>
> </group>
> </macro>
758,759c775
< <text macro="contributors-short"/>
< <text macro="title-short"/>
---
> <text macro="hereafter-reference"/>
777a794
> <text macro="hereafter-note" prefix=" "/>