endnote numbering won't copy/paste

A

AlyssaP

Version: 2008
Operating System: Mac OS X 10.5 (Leopard)

I'm preparing a book manuscript for publication. The publisher wants endnotes placed in a separate file. I'm trying to copy/paste them from each chapter (each is a separate document), but when I paste into the new document, every endnote is numbered "1". How do I convince Word to retain the numbers from the original documents?
 
C

CyberTaz

Hello Alyssa -

I only know of 2 options - footnotes & endnotes are a special breed of cat.

The first is very tedious depending on how many there are: Select &
Copy/Paste each endnote number (in the body text), one at a time. The
endnote # & the end notation text will get pasted into the new document. The
numbers can be selected & formatted as Hidden so they neither display nor
print as long as the ¶s are not displayed.

The second: Select & Copy the notation text. Use Edit> Paste Special -
Unformatted Text to paste them into the new doc then apply Numbering to
match the style in the main document.

There may be other options, but if so they're a bit beyond my ken.

HTH |:>)
Bob Jones
[MVP] Office:Mac
 
J

John McGhie

If you have access to Word 2004, or any version of PC Word, the following
macro will convert all numbers to normal text that can be copied. It works
on either a selected area, or the whole document.

Note: You must run it on a COPY, because numbering won¹t update after you
run it.

Sub ConvertNumbers()
' Converts all numbers to text
Dim doIt As Long
Dim aSel As Range
Dim alist As List
Dim aPara As Paragraph

Set aSel = Selection.Range
doIt = aSel.End - aSel.Start

If doIt > 1 Then
If aSel.ListParagraphs.Count > 0 Then
aSel.ListParagraphs(1).Range.ListFormat.List.ConvertNumbersToText
End If
Else
doIt = MsgBox("No selection. Do whole document?", vbExclamation +
vbOKCancel)
If doIt = 1 Then
ActiveDocument.ConvertNumbersToText
End If
End If
If doIt > 0 Then MsgBox "All numbering converted to typed text."

End Sub


Version: 2008
Operating System: Mac OS X 10.5 (Leopard)

I'm preparing a book manuscript for publication. The publisher wants endnotes
placed in a separate file. I'm trying to copy/paste them from each chapter
(each is a separate document), but when I paste into the new document, every
endnote is numbered "1". How do I convince Word to retain the numbers from the
original documents?

--
Don't wait for your answer, click here: http://www.word.mvps.org/

Please reply in the group. Please do NOT email me unless I ask you to.

John McGhie, Microsoft MVP, Word and Word:Mac
Sydney, Australia. mailto:[email protected]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top