#1   Report Post  
Posted to microsoft.public.word.newusers
Luckysghost Luckysghost is offline
external usenet poster
 
Posts: 1
Default Endnotes

Is there a way to jump back to the text where you entered an endnote after
you have entered it? In Wordperfect, for example, there is an icon that you
click that takes you right back to where you were. But I can't seen to find
something simliar in word. It seems like a pain to have to scroll back
through all the text when you are working on a long manuscript.
  #2   Report Post  
Posted to microsoft.public.word.newusers
Herb Tyson [MVP] Herb Tyson [MVP] is offline
external usenet poster
 
Posts: 2,936
Default Endnotes

Try pressing Shift+F5. It cycles among the current and previous three places
where any editing occurred.

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com


"Luckysghost" Luckysghost @discussions.microsoft.com wrote in message
...
Is there a way to jump back to the text where you entered an endnote after
you have entered it? In Wordperfect, for example, there is an icon that
you
click that takes you right back to where you were. But I can't seen to
find
something simliar in word. It seems like a pain to have to scroll back
through all the text when you are working on a long manuscript.


  #3   Report Post  
Posted to microsoft.public.word.newusers
Klaus Linke Klaus Linke is offline
external usenet poster
 
Posts: 413
Default Endnotes

In older versions, the same keystroke Alt+Ctrl+D inserted a footnote, and
took you back to the text.
It stopped working at some time.

You can override the built-in command with your own macro to re-establish
that nice behaviour:

Sub InsertEndnoteNow()
' hijacks the built-in InsertEndnoteNow,
' Keystroke: Alt+Ctrl+D

If Selection.StoryType = wdEndnotesStory Then
' return to main text:
With ActiveWindow
Select Case .ActivePane.View.Type
Case wdPrintView, wdReadingView, _
wdWebView, wdPrintPreview
.View.SeekView = wdSeekMainDocument
Case Else
.ActivePane.Close
End Select
End With
If Selection.Characters.Last.Style = _
ActiveDocument.Styles(wdStyleEndnoteReference) Then
Selection.Move Unit:=wdCharacter, Count:=1
End If
Else
' insert endnote:
Selection.Endnotes.Add Range:=Selection.Range
End If
End Sub

A similar macro works for footnotes (Alt+Ctrl+F).

Regards,
Klaus


  #4   Report Post  
Posted to microsoft.public.word.newusers
Klaus Linke Klaus Linke is offline
external usenet poster
 
Posts: 413
Default Endnotes

.... and if you are more of a mouse type than a keyboard type:
Double-clicking on the endnote reference takes you back, too.

Klaus


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
endnotes [email protected] Microsoft Word Help 1 July 18th 06 10:55 AM
endnotes Valerie Microsoft Word Help 2 March 15th 06 08:55 PM
How do I convert chapter endnotes into book endnotes? Frustrated Secretary Microsoft Word Help 1 March 5th 06 04:57 PM
Endnotes Stephanie Page Layout 1 May 13th 05 12:49 AM
endnotes Will Tanaka Microsoft Word Help 2 March 21st 05 05:53 AM


All times are GMT +1. The time now is 06:41 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"