Any way to have first name, last name is footnote but last, first in bibliography?

I am working in OSCOLA
Zotero makes it easy to choose between [first name last name] or [last, first] in the footnotes.
However, I need to keep [first last] in footnotes but change the bibliography around to do [last name, first name]. Is there an easy way to do this?

Also, bonus question: Is there a way to organize the bibliography by source type?

Thanks a ton!!
  • This is set by the citation style and you'd need to edit that.

    1. authors:
    Replace the current "author" macro with this:
    <macro name="author">
    <choose>
    <if type="interview">
    <group delimiter=", ">
    <names variable="interviewer">
    <name and="text" delimiter-precedes-last="never" sort-separator=" "/>
    </names>
    <names variable="author" prefix="Interview with ">
    <name and="text" delimiter-precedes-last="never" initialize="false"/>
    </names>
    </group>
    </if>
    <else-if type="personal_communication">
    <group delimiter=" ">
    <group delimiter=", ">
    <names variable="author">
    <name and="text" delimiter-precedes-last="never" sort-separator=" "/>
    </names>
    <text variable="genre"/>
    </group>
    <names variable="recipient" prefix="to ">
    <name and="text" delimiter-precedes-last="never" initialize="false"/>
    </names>
    </group>
    </else-if>
    <else-if type="broadcast">
    <text variable="publisher"/>
    </else-if>
    <else-if type="legal_case legislation" match="any"/>
    <else>
    <names variable="author">
    <name and="text" delimiter-precedes-last="never" sort-separator=" "/>
    <label form="short" prefix=" (" suffix=")" strip-periods="true"/>
    <substitute>
    <names variable="editor"/>
    <names variable="translator"/>
    <text macro="title"/>
    </substitute>
    </names>
    </else>
    </choose>
    </macro>


    2. sorting:

    See: https://forums.zotero.org/discussion/comment/127355/#Comment_127355
Sign In or Register to comment.