Footnotes

G

Guest

I have put a footnote in a research paper. I want to close footnotes and
continue writing my paper. I cannot figure out how to close footnotes.
 
O

Opinicus

New Student Mom said:
I have put a footnote in a research paper. I want to close footnotes and
continue writing my paper. I cannot figure out how to close footnotes.

I'm not sure what you mean by "close footnotes". Once you've entered a
footnote it'll always be visible. If you want to continue writing your
paper, just move the cursor back to wherever you want in the page.
 
K

Klaus Linke

And to add what Bob said: Double-clicking on the footnote reference will
take you back to the footnote in the text.

If you copy the macro below into your Normal.dot, you can use the same
shortcut Ctrl+Alt+F both to create a footnote, and to return to the text
once you are finished.

Regards,
Klaus

Sub InsertFootnoteNow()

' Replaces the built-in command InsertFootnoteNow,
' 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
 

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