Adjust APA style to include Call Numbers

Hi There

I would like to have some help on adding Call Numbers to the APA style. Staff here use APA style and would be keen to have Call numbers if available outputted.

I have a macro:

<macro name="callnumbers">
<choose>
<group>
<text term="retrieved"/>
<text term="from" suffix=" "/>
<text variable="call-number"/>
</group>
</choose>
</macro>

<bibliography>
<layout>
<text macro="callnumbers"/>
</layout>
</bibliography>

Any ideas what else I need to do?
  • edited January 19, 2011
    your macro doesn't work because you start a conditional loop with <choose> and Zotero expects an <if> - which it doesn't see so it either throws an error or ignores the macro.
    Just take out <choose> and </choose> and you should be fine.
    (also, for elegance, I'd take out the suffix=" " after term="from" and instead change the beginning of the group to
    <group delimiter=" ">
    that will put a space between the three elements.)
Sign In or Register to comment.