Change textual citation "(author, year, p. )" for "(author, year, page)".
Hello,
I'd like to change citation, to replace "(author, year, p. 1)" for "(author, year, page)" without "p.".
Example: (Atria, 1998, p. 1) for (Atria, 1998, 1).
Thank you so much!!!
I'd like to change citation, to replace "(author, year, p. 1)" for "(author, year, page)" without "p.".
Example: (Atria, 1998, p. 1) for (Atria, 1998, 1).
Thank you so much!!!
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
And also, are you submitting this paper to a particular journal or outlet?
No, Im not, I just want to have citation in that way. Thank you!
https://www.zotero.org/styles/apa-no-ampersand
Open in a text editor (like TextEdit, Notepad, etc.).
Find:
<else>
<label variable="locator" form="short"/>
</else>
And change it to:
<else-if locator="page" match="none">
<label variable="locator" form="short"/>
</else-if>
Change the style name and style ID at the top of the file to something else, save, and install.
General instructions for editing CSL styles here:
https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued-year"/>
<text macro="citation-locator"/>
</group>
change to:
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued-year"/>
</group>
<text macro="citation-locator" prefix=": "/>
Thank you so much for your help anyway! It works perfectly!!
Thank you, so helpful