How to change the name order from family name given name to Given name Family name in the bio?

edited May 16, 2021
The China National Standard GB/T 7714-2015 (author-date, Chinese) style was used, and the order of the author is family name then given name, how to change it to Given name Family in the bio?

I modified the code from

<name>
<name-part name="family" text-case="uppercase"/>
<name-part name="given"/>
</name>

to

<name>
<name-part name="given"/>
<name-part name="family" text-case="uppercase"/>
</name>

in the <macro name="author">
however, the display order did not change.

Any suggestions?
  • The name-part elements do not determine order. They're only for individual styling of name parts (like the uppercase you have).
    Instead, use name-as-sort-order for name (though given - family should be the default there, so it's possible something else is going on)
  • Many thanks, I made it by changing the value of "name-as-sort-order"
Sign In or Register to comment.