Add pp. if several pages - Citation Compass (Kildekompasset) - APA (note)
Hello everyone!
I would like to add page numbers to the "Citation Compass (Kildekompasset) - APA (note)". However, it should show "p." if it is just one page and "pp." if it is several pages.
My professor wants this specific style for my thesis and I cannot manage to edit the style in the Zotero Editor. Could you please help me? The output should look like this:
Citation note:
Badescu et al. 2004, p. 78; Philipp 2022, pp. 12-23.
Bibliography:
Badescu, G., Sum, P., & Uslaner, E. M. (2004). Civil society development and democratic values in Romania and Moldova. East European Politics and Societies, 18(2), pp. 316–341. https://doi.org/10.1177/0888325403259915
I would like to add page numbers to the "Citation Compass (Kildekompasset) - APA (note)". However, it should show "p." if it is just one page and "pp." if it is several pages.
My professor wants this specific style for my thesis and I cannot manage to edit the style in the Zotero Editor. Could you please help me? The output should look like this:
Citation note:
Badescu et al. 2004, p. 78; Philipp 2022, pp. 12-23.
Bibliography:
Badescu, G., Sum, P., & Uslaner, E. M. (2004). Civil society development and democratic values in Romania and Moldova. East European Politics and Societies, 18(2), pp. 316–341. https://doi.org/10.1177/0888325403259915
<macro name="citation-locator">
<group delimiter=" ">
<choose>
<if locator="page" match="none">
<label variable="locator" form="short"/>
</if>
</choose>
<text variable="locator"/>
</group>
</macro>
change to
<macro name="citation-locator">
<group delimiter=" ">
<label variable="locator" form="short"/>
<text variable="locator"/>
</group>
</macro>