edit the citation style

Hey guys

Two Questions:
1) I am using the international-organization style and i have set it up to de-DE in the first line but the FORMATTED BIBLIOGRAPHY is still in englisch with Accessed and available. Can i change this?

2) Is it possible to change the footnotes with a "TAB" behind the number in the footer?

Thanks for help!
  • 1) Unfortunately, the style isn't very well written and those two terms are hardcoded. You can just search for them and change them to the German translation you want. They're
    prefix=". Accessed" and prefix=". Available from <" respectively

    2. Not in the citation style, but this is something you can easily set up in your word processor by adjusting the style applied to footnotes.
  • Thanks.

    The style is right but i do not want to use ibid or ebd. Can i change this?
  • edited April 19, 2017
    Yes but this is hard for me, sorry i tried to change this but it does not work.


    <choose>
    <if position="subsequent">
    <group delimiter=", ">
    <text term="ibid"/>
    <text macro="point-locators-subsequent"/>
    </group>
    </if>
    <else-if position="ibid">
    <text term="ibid"/>
    </else-if>
    <else>
    <group>
    <text macro="contributors-short"/>
    <text macro="issued-year" prefix=" "/>
    <text macro="point-locators-subsequent" prefix=", "/>



    Could you please help @LiborA ? Thanks!
  • I do not see your code, you have put them between tags
    <code> and </code>
  • edited April 19, 2017
    If you do not want use ibid and in all case use full citation then you can use this code:
    <citation et-al-min="4" et-al-use-first="1" disambiguate-add-names="true" disambiguate-add-year-suffix="true">
    <layout suffix="." delimiter="; ">
    <group>
    <text macro="contributors-short"/>
    <text macro="issued-year" prefix=" "/>
    <text macro="point-locators-subsequent" prefix=", "/>
    </group>
    </layout>
    </citation>
  • now you can see the code above
  • here is the original code: What do i have to do to remove the ibid?



    <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>
    <else>
    <group>
    <text macro="contributors-short"/>
    <text macro="issued-year" prefix=" "/>
    <text macro="point-locators-subsequent" prefix=", "/>
    </group>
    </else>
    </choose>
    </layout>


    Thanks @LiborA @adamsmith
  • see LiborA's code above. That should work.
  • @rosicky replace whole citation part respectively part between layout tags in your style

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.

Sign In or Register to comment.