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?
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?
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.)