N
nutsmuggler
Hi folks. I am converting a word document into LaTeX. I need to put the
footnotes into the body, in the place of their index, between the
\footnote{HERE IS MY NOTE} tag.
I found this example
Sub MoveFootnote()
If Selection.Footnotes.Count = 1 Then
Selection.Footnotes(1).Range.Copy
Selection.Collapse direction:=wdCollapseStart
Selection.Paste
Selection.MoveRight Unit:=wdCharacter, Count:=1,
Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
End If
End Sub
This works for one single selected note, but not for all notes;
moreover, I would like to put "\footnote{" before the pasted note and
"}" after it.
Any suggestion?
Thanks in advance,
Davide
footnotes into the body, in the place of their index, between the
\footnote{HERE IS MY NOTE} tag.
I found this example
Sub MoveFootnote()
If Selection.Footnotes.Count = 1 Then
Selection.Footnotes(1).Range.Copy
Selection.Collapse direction:=wdCollapseStart
Selection.Paste
Selection.MoveRight Unit:=wdCharacter, Count:=1,
Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
End If
End Sub
This works for one single selected note, but not for all notes;
moreover, I would like to put "\footnote{" before the pasted note and
"}" after it.
Any suggestion?
Thanks in advance,
Davide