Help: removing first name from subsequent reference
Hi everyone,
I am trying to modify a French style called "infoclio sans majuscules". How can I remove the author's first name while keeking his or her family name in a subsequent note?
Thanks!
I am trying to modify a French style called "infoclio sans majuscules". How can I remove the author's first name while keeking his or her family name in a subsequent note?
Thanks!
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.
https://gist.github.com/anonymous/6716372
Thanks a lot
What you want to do is to create a macro along these lines:
<macro name="author-short">
<names variable="author">
<name sort-separator=", " form="short"/>
<label form="short" prefix=", " suffix=""/>
<et-al font-style="italic"/>
<substitute>
<names variable="editor"/>
</substitute>
</names >
</macro>
and then use that in the subsequent citation.
https://gist.github.com/adam3smith/6716822
line 391 to be specific
Thanks again