possible to change in-text citations to footnotes?
Hey, I am Using the new:
Chicago Manual of Style (author-date) (German) style. I like it a lot but I'd rather have Footnotes instead of in-text citations. Is it possible to adapt the style and what would I have to change in order to make it work!
Thanks, Marco.
Chicago Manual of Style (author-date) (German) style. I like it a lot but I'd rather have Footnotes instead of in-text citations. Is it possible to adapt the style and what would I have to change in order to make it work!
Thanks, Marco.
i now use the Harvard Reference ... 7
There's just one thing I do not know how to get fixed. I want this style to show two subsequent footnotes as "Ebd." or "Ibid"
How hard is it to implement this into the style?
<citation et-al-min="3" et-al-use-first="1" et-al-subsequent-min="3" et-al-subsequent-use-first="1" disambiguate-add-year-suffix="true" collapse="year">
<layout prefix="" suffix="." delimiter="; ">
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid" text-case="capitalize-first"/>
<text macro="point-locators-subsequent"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid" text-case="capitalize-first"/>
</else-if>
<else-if position="subsequent">
<group delimiter=", ">
<text macro="contributors-short"/>
<text macro="title-short"/>
<text macro="point-locators-subsequent"/>
</group>
</else-if>
<else>
<sort>
<key macro="author"/>
<key variable="issued"/>
</sort>
<layout prefix="" suffix="" delimiter="; ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="title"/>
<text macro="year-date"/>
</group>
<text macro="locator-citation" prefix=": "/>
</layout>
</else>
</choose>
</layout>
</citation>
originally it was:
<citation et-al-min="3" et-al-use-first="1" et-al-subsequent-min="3" et-al-subsequent-use-first="1" disambiguate-add-year-suffix="true" collapse="year">
<sort>
<key macro="author"/>
<key variable="issued"/>
</sort>
<layout prefix="" suffix="" delimiter="; ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="title"/>
<text macro="year-date"/>
</group>
<text macro="locator-citation" prefix=": "/>
</layout>
</citation>
sadly the test pane came back with:
Error parsing style:
TypeError: myxml is undefined
any idea what might be wrong?
http://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step#validation
<text macro="point-locators-subsequent"/>
that's the reason the test pane throws that particular error.
The only syntax issue I see quickly is the <sort> section, which needs to remain before <layout>, i.e. in the second line of the <citation> section.
Also, I would take out the <else-if subsequent> part - that doesn't make any sense here.