how do I get out of the footnote once I get my number in?

R

Rita

I was doing my paper and I got the referance and the foot note number then
when I tryed to go to the next page this line went across the paper and now
everything is a footnote......help?
 
S

Stefan Blom

You can double-click the footnote number to return to the main body of the
document (this works in the opposite direction, too).

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 
T

Tom Ferguson

Double-click the footnote or endnote number and it will return to the
reference mark in the document.

Tom
MSMVP 1998-2007
 
S

Suzanne S. Barnhill

Or just click back in the document body if it's visible above the
footnote/endnote pane.
 
S

Stefan Blom

Logically, one would think that should be *first* suggestion given. Too
easy, perhaps? <g>

--
Stefan Blom
Microsoft Word MVP


in message
 
S

sos-nc

Do you know if there is a keyboard shortcut to get back into the body of the
document? (That way I don't have to take my hands off the keyboard.)

Thanks,
Sharon
 
G

Graham Mayor

CTRL+End?

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
K

Klaus Linke

sos-nc said:
Do you know if there is a keyboard shortcut to get back into the body of
the
document?

You could double-click the footnote reference.
(That way I don't have to take my hands off the keyboard.)

If you use Ctrl+Alt+F to insert a footnote, you could use the macro below so
the same shortcut takes you back to the text.
That's the way Ctrl+Alt+F used to work anyway until a few versions ago...
until it was broken.

Just paste the macro below into your normal.dot ...

Regards,
Klaus



Sub InsertFootnoteNow()
' Replaces built-in command InsertFootnoteNow,
' built-in keyboard shortcut: Alt+Ctrl+F

If Selection.StoryType = wdFootnotesStory 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(wdStyleFootnoteReference) Then
Selection.Move Unit:=wdCharacter, Count:=1
End If
Else
' insert footnote:
Selection.Footnotes.Add Range:=Selection.Range
End If
End Sub
 
C

CyberTaz

Shift+F5 will take you back to the spot you inserted the footnote.

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

Stefan Blom

Strictly speaking, Shift+F5 takes you to to the last edit point, which isn't
necessarily in the paragraph containing the footnote reference. For example,
it could be somewhere within the footnote text.
 
R

Rhonda

Rita said:
I was doing my paper and I got the referance and the foot note number then
when I tryed to go to the next page this line went across the paper and now
everything is a footnote......help?

I am having the same issue. Here is the thing. I am trying to force a page
break in order to insert a new page for Works Cited. If I do this at the end
of my text, before the footnote, the footnote goes on the next page. If I do
this AFTER the footnote, the next page is a continuation of the footnote.
Any ideas?
 
S

Suzanne S. Barnhill

Make sure the insertion point is in the document body, not in the footnote
text. If a footnote can't fit on a single page, it will be continued on the
next page; obviously, if that page is otherwise blank, that's going to look
very weird, so it might be better to force the paragraph containing the
footnote reference to the next page so that the entire paragraph and the
entire footnote are on the same page.
 
S

steph

hey, i cant get to the next page either, and double-clicking is not
helping... anything else i can do?
 
S

Suzanne S. Barnhill

If you are in Print Layout view, just double-clicking back in the document
body should do it. If you're in Normal/Draft view, there should be a Close
button in the footnote pane.
 

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