Need recommendation for facsimile citation
I'm curious as to the best place to insert reprint (facsimile) citation in my book data fields in Zotero to ensure the citation formats correctly.
I have several academic works that are considered facsimilies. The works are a reproduction of an original work that is now in the public domain. In most of them, pages, fonts, and page layout are identical to the original. They are just bound by a new publisher.
You can see an example here, although Amazon doesn't do a great job of storing all the necessary metadata.
https://www.amazon.com/Office-Work-Holy-Spirit/dp/1357553536/ref=sr_1_fkmrnull_1?keywords=the+office+and+work+of+the+holy+spirit+buchanan&qid=1557248221&s=gateway&sr=8-1-fkmrnull
My style manager says that the reprint publisher should follow the citation of the original work, as in the example below.
Calvin, John. Ioannis Calvini Opera quae supersunt omnia. Edited by Wilhelm Baum, Eduard Cunitz, and Eduard Reuss. 59 vols. in 58. Corpus Reformatorum, vols. 29-87. Brunswick, NJ: C. A. Schwetschke and Son, 1863-1900; reprint, New York: Johnston Reprint Corp., 1964.
I can't figure out how best to insert the necessary information. I've read posts that suggest to put it in the date field, but that isn't a good option when allowing Zotero to format footnotes. I've also read that Zotero 5.1 might include additional fields to address my issue. Not sure if that's true.
I believe I need to put the original publisher/place/date in the correct Zotero book fields and "Facsimile Reprint" in the Edition field. I can't, however, figure out where to put the new facsimile/reprint publisher information so that it follows the original citation.
I use Turabian 8th edition style.
I have several academic works that are considered facsimilies. The works are a reproduction of an original work that is now in the public domain. In most of them, pages, fonts, and page layout are identical to the original. They are just bound by a new publisher.
You can see an example here, although Amazon doesn't do a great job of storing all the necessary metadata.
https://www.amazon.com/Office-Work-Holy-Spirit/dp/1357553536/ref=sr_1_fkmrnull_1?keywords=the+office+and+work+of+the+holy+spirit+buchanan&qid=1557248221&s=gateway&sr=8-1-fkmrnull
My style manager says that the reprint publisher should follow the citation of the original work, as in the example below.
Calvin, John. Ioannis Calvini Opera quae supersunt omnia. Edited by Wilhelm Baum, Eduard Cunitz, and Eduard Reuss. 59 vols. in 58. Corpus Reformatorum, vols. 29-87. Brunswick, NJ: C. A. Schwetschke and Son, 1863-1900; reprint, New York: Johnston Reprint Corp., 1964.
I can't figure out how best to insert the necessary information. I've read posts that suggest to put it in the date field, but that isn't a good option when allowing Zotero to format footnotes. I've also read that Zotero 5.1 might include additional fields to address my issue. Not sure if that's true.
I believe I need to put the original publisher/place/date in the correct Zotero book fields and "Facsimile Reprint" in the Edition field. I can't, however, figure out where to put the new facsimile/reprint publisher information so that it follows the original citation.
I use Turabian 8th edition style.
Original date: 1863/1900
Original publisher: Schwetschke
Original publisher place: Brunswick
Styles that are programmed to include this information will pick up these fields from there.
@bwiernik, where are the fields you describe? My Item Type is "book" and I don't see anything referencing original publication information.
As for the style author -- there's an open issue for Turabian 8 support, so it's not like we're not aware of it, but not sure how quickly that'll happen: may well take months.
(and no, no suffixes for bibliography entries)
And if it matters I can wait months (not years). Thanks for the info.
Any help with pointing out my errors or adjusting the SBL style's CSL would be most appreciated (I'm already using the latest version updated 19 June 2019).
Thanks so much!
If I'm doing something wrong with the input or if there are any other suggestions for how to get this citation out of Zotero properly with the SBL style, I'd be most grateful.
Thank you so much for your help!
If you open the editor and chnage the publisher macro to this, it seems to work:
<macro name="publisher">
<choose>
<if type="thesis">
<text variable="publisher"/>
</if>
<else>
<group delimiter=" ">
<choose>
<if variable="original-date" match="any">
<text variable="original-publisher-place" suffix=":"/>
<text variable="original-publisher" suffix=","/>
<date variable="original-date" form="text" date-parts="year" prefix="" suffix="; repr., "/>
</if>
</choose>
<text variable="publisher-place"/>
<text variable="publisher"/>
</group>
</else>
</choose>
</macro>
Then make sure the Extra field uses the format:
Original Date: 1689
Original Publisher: Johannes Gyselaar
Original Publisher Place: Franeker
It's hacky in the sense that you need to supply all 3 fields and I'm not sure what the SBL format is when some are missing. I mean, it's just hacky in general so use at your own risk.