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!
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