Hey all, after seeing all the new fields (which are much appreciated!), I was surprised that volume title wasn't one of them. Just wondering if this is in the pipeline?
I'm not sure it matches your use case, but have you tried using that title as the Book Title, the container title as Series and the volume number as Series Number?
If I may make a few suggestions on implementing this: books also need the part number and title fields (the same as in journal articles) alongside volume titles. For example: https://www.zotero.org/groups/2205533/items/P3WCZ5HS.
Support for the volume-title variable needs to be added to journal articles as well, to support an issue title, e.g. https://www.zotero.org/groups/2205533/items/6VYDHCV4. I might suggest renaming the Series Title or Series Text field to Issue Title and mapping it to volume-title. It looks from old documentation as if these were originally intended to support what is now covered by the volume-title and section variables. (A 'series' with a periodical usually refers to '3rd series', 'new series', etc., which does not have a further title, so the Series field is enough to cover this on its own.) Series Title is double-mapped to collection-title, while Series Text is not mapped to anything.
Ah I had forgotten about series titles for periodicals, as that isn't an issue for me anywhere near as often, but I have encountered it a couple times (and yes it was "New Series" most recently I believe).
@frigidilius Nobody has yet programmed support for volume or part titles in SBL. APA, Chicago, MHRA, MLA, and Oxford all support these variables fully.
That makes better sense; thanks @dunning. Coming from an ignoramus, @dstark@adamsmith, how hard would it be to copy and past whatever's been programmed from these other citation formats into SBLH2? Or is copying and pasting even a thing for the likes of this?
For that specific scenario -- it would be impossible. That said, we've now seen a couple of pretty decent AI generated CSL style updates, so you could try that if it's of interest (I don't what tools/toolchain works, though). Since you can't really break much with a bad/broken CSL style, there's not much too lose.
@frigidilius, the closest I think I've gotten on this front is something like in the following RDF. It's hacky and doesn't translate well to other styles but does provide correct output for SBLHS2.
Support for the
volume-titlevariable needs to be added to journal articles as well, to support an issue title, e.g. https://www.zotero.org/groups/2205533/items/6VYDHCV4. I might suggest renaming the Series Title or Series Text field to Issue Title and mapping it tovolume-title. It looks from old documentation as if these were originally intended to support what is now covered by thevolume-titleandsectionvariables. (A 'series' with a periodical usually refers to '3rd series', 'new series', etc., which does not have a further title, so the Series field is enough to cover this on its own.) Series Title is double-mapped tocollection-title, while Series Text is not mapped to anything.<rdf:RDF>
<bib:Book rdf:about="#item_12934">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>
A Grammar of New Testament Greek<i>, by James Hope Moulton, 4 <span class="nocase">vols.</span></i>
</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Edinburgh</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>T&T Clark</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Turner</foaf:surname>
<foaf:givenName>Nigel</foaf:givenName>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:subject>#nosource</dc:subject>
<dc:subject>Attachments - Stored</dc:subject>
<dc:title>Syntax</dc:title>
<dc:date>1908-1976</dc:date>
<z:language>na</z:language>
<z:shortTitle>Syntax</z:shortTitle>
<dc:description>issued: 1908/1976</dc:description>
<prism:volume>3</prism:volume>
<z:numberOfVolumes>4</z:numberOfVolumes>
<z:citationKey>TurnerSyntax1908</z:citationKey>
</bib:Book>
</rdf:RDF>