How to add Ibid. to a style
Hi there,
I'm using a modified version of the MHRA footnote style, and have managed to tweak it mostly to my requirements (it's for a PhD thesis), but can't work out how to change the style to use 'Ibid.' for subsequent citations. I'd be very grateful if somebody could let me know the changes I need to make.
Thanks in advance,
Becca
I'm using a modified version of the MHRA footnote style, and have managed to tweak it mostly to my requirements (it's for a PhD thesis), but can't work out how to change the style to use 'Ibid.' for subsequent citations. I'd be very grateful if somebody could let me know the changes I need to make.
Thanks in advance,
Becca
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid"/>
<text macro="point-locators-subsequent"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid"/>
</else-if>
The only thing left to do then is to change the
<if position="subsequent"> and it's corresponding closing tag to else-if
(note for future readers: this will only work if a style has, like MHRA, a macro named "point-locators-subsequent"; otherwise you'll have to define one or use a different one).
I suspect the answer to this will be that it's not possible, but is there any way to get the Word plugin to treat the first citation of a given source on a page as "subsequent" rather than "ibid"? So for example I have on one page footnotes as follows:
20. The Burton Joyce Local History Group, Burton Joyce & Bulcote: Studies in the history of two Trent Valley villages (Burton Joyce: The Burton Joyce Local History Group, 1978), p. 101.
21. Ibid., pp. 13–15.
Then on the next page I have:
22. Ibid., p. 7.
According to my submission guidelines footnote 22 should read "Burton Joyce Local History Group, p. 7". If it's not possible to do this automatically I can just make changes manually, but it would be useful to do if I can.
Thanks again.
Paste to gist.github.com , create a private gist, post the link here.
https://gist.github.com/anonymous/d18c9cd88b890d3f3edb5b0ef954c51a
<text macro="locators-note"/> (for notes)
<text macro="volume"/> (for the bibliography)
outside of the group, i.e. two lines down. The group has a comma delimiter between all of its elements.
Then add a prefix=" " to both to get a space before them.
I'm using Chicago Style 16th edition, author date. Unfortunately "ibid" is not working.
So I checked the code (as well as for the preset version of APA), but in both cases there is no "point-locators-subsequent" part in the code.
Is this right?
Finally, if I add the code (instead of ibid it will be the German Version "ebd."), does it matter on which section exactly?
Thanks for your help/Beste Grüße
don.caputo
You can use something like
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid"/>
<text variable="locator"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid"/>
</else-if>
instead. That should work pretty nicely.
And yes, it matters where exactly you add this. Check how this is done in a style that does use ebd. (like Chicago note), then emulate.
(Ich habe den APA Code durch den Chicago Style Note Code ersetzt, also den ibid Part. Allerdings hat es mir den ganzen Stil zerrissen.)
Many thanks, don.caputo
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-names="true">
<layout suffix="." delimiter="; ">
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid"/>
<text macro="point-locators-subsequent"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid"/>
</else-if>
Hier geht es zum gist:
https://gist.github.com/anonymous/28c49871affdea23cba507b9264346f2
Danke! :)
<else>
Fall abdecken und das<choose>
tag schliessen, also sowas wie (ungetestet)<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid"/>
<text macro="citation-locator"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid"/>
</else-if>
<else>
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued-year"/>
<text macro="citation-locator"/>
</group>
</else>
</choose>
ich schreibe an meiner Masterarbeit und bin nun fast fertig.
Allerdings habe ich bisher den Zitationsstile "American Anthropological Association" verwendet - da er so schöne Kurzbelege im Text liefert (Meyer 2005:14) und ich eher zuviele Seiten habe.
Hierzu wünsche ich mir nun noch das "ebd", um Seiten zu sparen. Ist es möglich, dass mir jemand erklärt, wie ich das bewerkstelligen kann?
Da ich leider eine absolute Niete bin, wollte ich anfrage, ob mir hierbei jemand helfen kann.
Ich danke euch recht herzlich.
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid"/>
<text macro="point-locators"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid"/>
</else-if>
<else>
<group delimiter=":">
<group delimiter=" ">
<text macro="contributors-short"/>
<text macro="date-reference"/>
</group>
<text macro="point-locators"/>
</group
</else>
</choose>
Allgemeine Anleitung ist hier: https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
Ich kann ja nicht einfach raten oder?
<group delimiter=":">
<group delimiter=" ">
<text macro="contributors-short"/>
<text macro="date-reference"/>
</group>
<text macro="point-locators"/>
</group
Ich beginne zu mit dem Löschen des Quellcodes bei und ende bei dann dein Code 6 min ago und wie geht es dann weiter?
Aus ibid. sollte ebd. werden
Ich habe im Code einfach aus ibid. ein ebd. gemacht, aber dann sagt Zotero:
"Test.csl" ist keine gültige CSL 1.0.1 Zitationsstil-Datei, daher funktioniert sie möglicherweise nicht korrekt mit Zotero.
Folglich wollte ich im Quellcode einfach ibid durch ebd ersetzen. Das läuft aber leider nicht
Die Datei zitiert nun wie sie soll. Dafür danke ich dir sehr. Allerdings fügt sie eben das englische "ibid." ein und nicht das deutsche "ebd."
Du kannst default-locale="en-US" zu default-locale="de-DE" aenderen um den ganzen Stil auf Deutsch zu haben.