How to cite a reference using a superscript number in document
I'm writing a report and have been able to create a bibliography. Due to a limitation in the number of pages allowed, rather then citing a reference by the author and year (Smith & Tucker 2009), I need to use a number that corresponds to the reference in the document and on the reference page at the end of the report. I don't know if in Zotero there is a way to assign a number to a reference.
Thank you for your help. This is the first time I'm using a program such as Zotero.
http://www.zotero.org/styles
This is what gtucke asked for, and 4 years later I am looking for the same...
Poor psychologists writing grants with word limit ;-)
Could someone tell me how I can create styles on my own like @bwiernik did.
I was trying to do what he did to apa style (using superscript nos in the text, and a numbered bibliography in the ama style (https://www.zotero.org/styles?q=id:american-medical-association)
Any help or advice?
https://raw.githubusercontent.com/bwiernik/zotero-tools/master/apa-numeric.csl
Otherwise, you can use the Visual Editor to edit the style:
http://editor.citationstyles.org/
Another option, what style are you starting from? I can maybe help you out there. Is this for a specific journal or publisher?
I wanted to start on the AMA style (american medical association). i think its mildly different from APA?
https://www.zotero.org/styles?q=id:american-medical-association
Does it work for you?
I figured out how to remove those by finding where that was in the script but I am totally a novice and just guessed, and in the end, the edits I made using the style editor worked for just having the superscript numbers sequentially ordered without brackets around each number/set of numbers, but then when I add the bibliography at the end, it doesn't number them. If there was an easy way for me to add the auto numbering back for the end of document bibliography, great, but otherwise I will just number then to match the document flow/numbering, manually.
If someone here edits these scripts and can help, I can provide my email to send the current CSL that I edited but that is missing the ability to auto-number when it spits out the bibliography.
<layout prefix="[" suffix="]" delimiter="," vertical-align="sup">
Delete the prefix and suffix parts.
Thank you.
<layout delimiter="," vertical-align="sup">
https://raw.githubusercontent.com/bwiernik/zotero-tools/master/apa-numeric.csl
To edit the IJMR (or any other Journal of your interest) citation style in Zotero to use superscript instead of brackets, you'll need to modify the CSL (Citation Style Language) file. Here's how you can do it:
Go to Zotero Style Repository if you need to download the style file that you wish to edit.
Open your manuscript file in Word, and open the Zotero Tab.
Open Document Preferences.
Click on Manage Styles, then click on Style Editor.
Copy the CSL code into a a text editor (like Notepad.
To Modify the citation format:
Look for the section in the CSL file.
Change the citation style to use superscripts by modifying the section.
Replace tags containing
<text variable="citation-number" suffix="]"/>
with<text variable="citation-number" font-style="superscript"/>
.Save the Notepad file, then copy/paste the modified style code to the CSL file.
Save your changes to the CSL file.
Test your changes:
Try citing a reference in a document to ensure the numbers appear as superscripts.
<text variable="citation-number" font-style="superscript"/>
isn't valid CSL, should throw an error on install, and I'm surprised it works. The correct code for superscript, as noted above, is
vertical-align="sup"