Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I need to change references (endnotes) cited in a document from, for example,
3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Insert all the references as usual, but don't bother with punctuation
between them. Then insert an en dash after the first or before the last. Then select all but the first and last and format them as Hidden. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "oritil" wrote in message ... I need to change references (endnotes) cited in a document from, for example, 3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
How do I hide them?
"oritil" wrote: I need to change references (endnotes) cited in a document from, for example, 3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
How do I format them as hidden?
"Suzanne S. Barnhill" wrote: Insert all the references as usual, but don't bother with punctuation between them. Then insert an en dash after the first or before the last. Then select all but the first and last and format them as Hidden. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "oritil" wrote in message ... I need to change references (endnotes) cited in a document from, for example, 3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
It worked! Thank you.
"Suzanne S. Barnhill" wrote: Insert all the references as usual, but don't bother with punctuation between them. Then insert an en dash after the first or before the last. Then select all but the first and last and format them as Hidden. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "oritil" wrote in message ... I need to change references (endnotes) cited in a document from, for example, 3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#6
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I guess you figured it out! (Format | Font | Hidden or Ctrl+Shift+H)
-- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "oritil" wrote in message ... It worked! Thank you. "Suzanne S. Barnhill" wrote: Insert all the references as usual, but don't bother with punctuation between them. Then insert an en dash after the first or before the last. Then select all but the first and last and format them as Hidden. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "oritil" wrote in message ... I need to change references (endnotes) cited in a document from, for example, 3,4,5,6 to 3-6, but the numbers are tied into the endnotes, thus deleting the endnotes when I change them. How can I detach/unlink the endnotes from the rest of the document while maintaining the numbering both in text and the endnotes? |
#7
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
It seems you are boffin when it gets to the endnotes! I am anable see an
anwer for the second part of your question: How do I unlink endnotes but keep numbering in the text as well as the reference list. |
#8
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
To convert endnotes to text you can use this macro by Doug Robbins:
Sub ConvertTheEndNotes() ' Macro created 29/09/99 by Doug Robbins to replace endnotes with 'textnotes 'at end of document and ' to replace the endnote reference in the body of the document with a 'superscript number. ' Dim aendnote As Endnote For Each aendnote In ActiveDocument.Endnotes ActiveDocument.Range.InsertAfter vbCr & aendnote.Index _ & vbTab & aendnote.Range aendnote.Reference.InsertBefore "a" & aendnote.Index & "a" Next aendnote For Each aendnote In ActiveDocument.Endnotes aendnote.Reference.Delete Next aendnote Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find.Replacement.Font .Superscript = True End With With Selection.Find .Text = "(a)([0-9]{1,})(a)" .Replacement.Text = "\2" .Forward = True .Wrap = wdFindContinue .Format = True .MatchWildcards = True End With Selection.Find.Execute Replace:=wdReplaceAll End Sub -- Stefan Blom Microsoft Word MVP "elize" wrote in message ... It seems you are boffin when it gets to the endnotes! I am anable see an anwer for the second part of your question: How do I unlink endnotes but keep numbering in the text as well as the reference list. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Re-starting List Number numbering changes text to another style | Microsoft Word Help | |||
how to create references to new endnotes within exisitng list | Microsoft Word Help | |||
unlink endnotes in my document | Microsoft Word Help | |||
Numbering of endnotes/footnotes in Word 2004 | New Users | |||
Adding an endnote to an existing list of endnotes | Microsoft Word Help |