5

When citing in Vancouver style, it is more common to display citations as 1 or (1) rather than Word's default of (1) when using the built in citation manager.

Is there a way to force Word to display them in this alternate format? This website would seem to suggest not, however I'm wondering if anyone here has any thoughts? I'm not adverse to changing the citation style in program files, I would just appreciate some advice on how to do it assuming there is no easy fix that I'm missing.

Rory
  • 615

4 Answers4

4

The Word built-in reference tool has a style called "IEEE" which has similar citations except that the number is not in superscript. IEEE format

Inorder to make the citation in superscript, you should modify the style file which is in the %APPDATA%\Microsoft\Bibliography\Style folder.
Back up the IEEE2006OfficeOnline.xsl file, and find the string <xsl:template name="Citation">.
In this segment, you can find <body> and </body>, change these to <body><xsl:element name="sup"> and </xsl:element></body>.
Then the citation looks like this below. modified IEEE format

Brainor
  • 145
0

I have the same issue, but I have found out that some Youtuber create a Macro to make all citations to be superscripted. To use it, just use the Word citation tool to add a new citation, then start the macro function.

Kudos to Ismail Fahmi : https://www.youtube.com/watch?v=56HWKBuM-zg

Here's the code

Sub ReferenceNumberStyle()
Application.ScreenUpdating = False
Dim Fld As Field
For Each Fld In ActiveDocument.Fields
  If Fld.Type = wdFieldCitation Then
    Fld.Code.Font.ColorIndex = wdBlack
    Fld.Code.Font.Superscript = True
    Fld.Result.Font.ColorIndex = wdBlack
    Fld.Result.Font.Superscript = True
  End If
Next
Application.ScreenUpdating = True
End Sub

Tested. It works for me in Word 2019

0

I have concluded that this is not directly achievable in the current version of Word.

The workaround I am using at present, which is also a much superior solution to the inbuilt referencing in word as a whole concept, is to manage references through End Note X6. Whilst the bibliographies produced are less pretty, they are better formatted and offer easier customisation.

Most importantly, and for reasons I'm not entirely sure about, an End Note "Cite While You Write" citation stays superscript throughout editing and printing if you tell it to do so just once per citation.

I am still looking for a way to make this the default style in End Note.

Rory
  • 615
-1

I think Word uses a special style to display citations, you could physically alter that style.

gt6989b
  • 593
  • 1
  • 6
  • 15