Separating elements in a citation

I am working on a custom style that displays ibid references in a particular way.
Originally I just had those ibid citations displaying as page number only, thus:

<if position="ibid">
<text variable="locator"/>

Now I want to add a short title to those citations if there is more than one work by that author. What I have is:

<if position="ibid">
<choose>
<if disambiguate="true">
<text macro="title-short"/>
</if>
</choose>
<text variable="locator"/>
</if>

With "VS" as the short title, this is displaying in my document as: (22VS)

I want it to display as: (VS 22)

How do I reverse the order of appearance of the short title and page number, and insert a space in between?
  • nothing obvious. We'd have to see the whole style. Post to gist.github.com (you won't need to register) and we can (hopefully) tell you more.

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.