: Multiple continues references in Microsoft office word 2013 I'm writing a paper for IEEE using Microsoft office Word 2013. I want to use dynamic reference which is available in this version of
I'm writing a paper for IEEE using Microsoft office Word 2013. I want to use dynamic reference which is available in this version of Word. In a place of my article the references are similar to:
bla bla [1,2,3,4,5]
How can I convert it to some thing like [1]-[5] without losing dynamic ability?
In other words I do not want to convert my references to static text.
More posts by @Jamie945
: Are there any problems using the real-life address of a building if the building is still standing? I'm writing a story that takes place in the future, sometime around the 2200s, give or take
: Folktale within a folktale I am looking for any type of oral literature (folktale, poem whatever), that would include an inserted story, however minor, that is in its content foreign to the
1 Comments
Sorted by latest first Latest Oldest Best
According to this page on word.tips.net, this is not possible in Word.
There is instead a suggestion to hide the middle references and add a dash:
One solution is to select the intermediate references in the range, format them as hidden text, and then add a dash. For instance, you could select ",4,5," from the references "3,4,5,6", format the selection as hidden text, and then add a dash to provide the result of "3-6". If you have quite a few such operations to perform in your text, you can automate it slightly by using the following macro:
Sub RefListToRange()
Selection.Font.Hidden = True
Selection.Collapse (wdCollapseEnd)
Selection.TypeText Text:="–"
End Sub
Select the portion you want to hide (such as ",4,5,") and the macro does the hiding and adds the dash.
Terms of Use Privacy policy Contact About Cancellation policy © selfpublishingguru.com2024 All Rights reserved.