Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Nancy Vyh Nancy Vyh is offline
external usenet poster
 
Posts: 1
Default How do I get footnotes to look like those in Turabian 7th edition

Turabian 7th edition, as well as Chicago Manual 15 want the numbers in the
footnotes to be full size, followed by a dot. However, the footnote numbers
in the text are superscript. How can I get the numbers to be in a different
style?
Chicago and Turabian seem to be working with software other than that used
by students!

  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default How do I get footnotes to look like those in Turabian 7th edition

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the numbers in the
footnotes to be full size, followed by a dot. However, the footnote

numbers
in the text are superscript. How can I get the numbers to be in a

different
style?
Chicago and Turabian seem to be working with software other than that used
by students!


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Nancy Vyh[_2_] Nancy Vyh[_2_] is offline
external usenet poster
 
Posts: 1
Default How do I get footnotes to look like those in Turabian 7th edit

This fixed the problem. It is also possible to put only a space instead of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the numbers in the
footnotes to be full size, followed by a dot. However, the footnote

numbers
in the text are superscript. How can I get the numbers to be in a

different
style?
Chicago and Turabian seem to be working with software other than that used
by students!



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Lene Fredborg Lene Fredborg is offline
external usenet poster
 
Posts: 1,291
Default How do I get footnotes to look like those in Turabian 7th edit

To change the tab to a space, change the InsertFootnote macro as follows:
Replace the following line in the macro:
..InsertAfter "." & vbTab
with
..InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference style
as suggested in the article, you should keep the tab in order to have the
text in the first line of each footnote aligned to the text in subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space instead of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the numbers in the
footnotes to be full size, followed by a dot. However, the footnote

numbers
in the text are superscript. How can I get the numbers to be in a

different
style?
Chicago and Turabian seem to be working with software other than that used
by students!



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Summer Summer is offline
external usenet poster
 
Posts: 333
Default How do I get footnotes to look like those in Turabian 7th edit

Lene,
InsertFootnote does not intercept in 2003 or 2007 of the toolbar command nor
does it intercept in 2007 when using the macro.
It does work in 2003 as it should with Insert Reference Footnote.

Do you know why or is it being "fickle"? I use overtype as an intercept
(I've got text assigned) and it works fine.

"Lene Fredborg" wrote in message
...
To change the tab to a space, change the InsertFootnote macro as follows:
Replace the following line in the macro:
.InsertAfter "." & vbTab
with
.InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference
style
as suggested in the article, you should keep the tab in order to have the
text in the first line of each footnote aligned to the text in subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space instead
of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the numbers
in the
footnotes to be full size, followed by a dot. However, the footnote
numbers
in the text are superscript. How can I get the numbers to be in a
different
style?
Chicago and Turabian seem to be working with software other than that
used
by students!







  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Lene Fredborg Lene Fredborg is offline
external usenet poster
 
Posts: 1,291
Default How do I get footnotes to look like those in Turabian 7th edit

Summer,

Actually, I am not sure which toolbar command you refer to - there may be
one that I have never noticed. In which toolbar?

However, I made a little research (but with a poor result):
If found that the ID of the InsertFootnote command in the Insert menu is
3365. I then tried to use
CommandBars.FindControl(ID:=3365)
to find a control with that ID. I found one with the caption "Note options".
I found a command named NoteOptions and a corresponding constant named
wdDialogNoteOptions (=373). However, if I try to run the code:
Dialogs(wdDialogNoteOptions).Show
nothing happens and if I check the OnAction property of the found control,
it is empty.

On the other hand,
Dialogs(wdDialogInsertFootnote).Show
displays the known dialog box from the Insert menu (wdDialogInsertFootnote =
370).

Searching for VBA help on NoteOptions leads to the help item "Visual Basic
Equivalents N" so mayby NoteOptions if no longer supported and should have
been removed.

I don't know, but my guess is that the command you refer to attempts to
execute the NoteOptions command.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Summer" wrote:

Lene,
InsertFootnote does not intercept in 2003 or 2007 of the toolbar command nor
does it intercept in 2007 when using the macro.
It does work in 2003 as it should with Insert Reference Footnote.

Do you know why or is it being "fickle"? I use overtype as an intercept
(I've got text assigned) and it works fine.

"Lene Fredborg" wrote in message
...
To change the tab to a space, change the InsertFootnote macro as follows:
Replace the following line in the macro:
.InsertAfter "." & vbTab
with
.InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference
style
as suggested in the article, you should keep the tab in order to have the
text in the first line of each footnote aligned to the text in subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space instead
of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the numbers
in the
footnotes to be full size, followed by a dot. However, the footnote
numbers
in the text are superscript. How can I get the numbers to be in a
different
style?
Chicago and Turabian seem to be working with software other than that
used
by students!






  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Summer Summer is offline
external usenet poster
 
Posts: 333
Default How do I get footnotes to look like those in Turabian 7th edit

It is the InsertFootnote command and it does intercept the macro Footnotes
on the MVP site.

Thank you

"Lene Fredborg" wrote in message
news
Summer,

Actually, I am not sure which toolbar command you refer to - there may be
one that I have never noticed. In which toolbar?

However, I made a little research (but with a poor result):
If found that the ID of the InsertFootnote command in the Insert menu is
3365. I then tried to use
CommandBars.FindControl(ID:=3365)
to find a control with that ID. I found one with the caption "Note
options".
I found a command named NoteOptions and a corresponding constant named
wdDialogNoteOptions (=373). However, if I try to run the code:
Dialogs(wdDialogNoteOptions).Show
nothing happens and if I check the OnAction property of the found control,
it is empty.

On the other hand,
Dialogs(wdDialogInsertFootnote).Show
displays the known dialog box from the Insert menu (wdDialogInsertFootnote
=
370).

Searching for VBA help on NoteOptions leads to the help item "Visual Basic
Equivalents N" so mayby NoteOptions if no longer supported and should have
been removed.

I don't know, but my guess is that the command you refer to attempts to
execute the NoteOptions command.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Summer" wrote:

Lene,
InsertFootnote does not intercept in 2003 or 2007 of the toolbar command
nor
does it intercept in 2007 when using the macro.
It does work in 2003 as it should with Insert Reference Footnote.

Do you know why or is it being "fickle"? I use overtype as an intercept
(I've got text assigned) and it works fine.

"Lene Fredborg" wrote in message
...
To change the tab to a space, change the InsertFootnote macro as
follows:
Replace the following line in the macro:
.InsertAfter "." & vbTab
with
.InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference
style
as suggested in the article, you should keep the tab in order to have
the
text in the first line of each footnote aligned to the text in
subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space
instead
of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the
numbers
in the
footnotes to be full size, followed by a dot. However, the
footnote
numbers
in the text are superscript. How can I get the numbers to be in a
different
style?
Chicago and Turabian seem to be working with software other than
that
used
by students!








  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Summer Summer is offline
external usenet poster
 
Posts: 333
Default How do I get footnotes to look like those in Turabian 7th edit

It is as simple as the naming convention has to be "InsertFootnote" on
toolbar.

Thank you.
"Lene Fredborg" wrote in message
news
Summer,

Actually, I am not sure which toolbar command you refer to - there may be
one that I have never noticed. In which toolbar?

However, I made a little research (but with a poor result):
If found that the ID of the InsertFootnote command in the Insert menu is
3365. I then tried to use
CommandBars.FindControl(ID:=3365)
to find a control with that ID. I found one with the caption "Note
options".
I found a command named NoteOptions and a corresponding constant named
wdDialogNoteOptions (=373). However, if I try to run the code:
Dialogs(wdDialogNoteOptions).Show
nothing happens and if I check the OnAction property of the found control,
it is empty.

On the other hand,
Dialogs(wdDialogInsertFootnote).Show
displays the known dialog box from the Insert menu (wdDialogInsertFootnote
=
370).

Searching for VBA help on NoteOptions leads to the help item "Visual Basic
Equivalents N" so mayby NoteOptions if no longer supported and should have
been removed.

I don't know, but my guess is that the command you refer to attempts to
execute the NoteOptions command.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Summer" wrote:

Lene,
InsertFootnote does not intercept in 2003 or 2007 of the toolbar command
nor
does it intercept in 2007 when using the macro.
It does work in 2003 as it should with Insert Reference Footnote.

Do you know why or is it being "fickle"? I use overtype as an intercept
(I've got text assigned) and it works fine.

"Lene Fredborg" wrote in message
...
To change the tab to a space, change the InsertFootnote macro as
follows:
Replace the following line in the macro:
.InsertAfter "." & vbTab
with
.InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference
style
as suggested in the article, you should keep the tab in order to have
the
text in the first line of each footnote aligned to the text in
subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space
instead
of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the
numbers
in the
footnotes to be full size, followed by a dot. However, the
footnote
numbers
in the text are superscript. How can I get the numbers to be in a
different
style?
Chicago and Turabian seem to be working with software other than
that
used
by students!








  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Lene Fredborg Lene Fredborg is offline
external usenet poster
 
Posts: 1,291
Default How do I get footnotes to look like those in Turabian 7th edit

I am glad you found and solved the problem.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Summer" wrote:

It is as simple as the naming convention has to be "InsertFootnote" on
toolbar.

Thank you.
"Lene Fredborg" wrote in message
news
Summer,

Actually, I am not sure which toolbar command you refer to - there may be
one that I have never noticed. In which toolbar?

However, I made a little research (but with a poor result):
If found that the ID of the InsertFootnote command in the Insert menu is
3365. I then tried to use
CommandBars.FindControl(ID:=3365)
to find a control with that ID. I found one with the caption "Note
options".
I found a command named NoteOptions and a corresponding constant named
wdDialogNoteOptions (=373). However, if I try to run the code:
Dialogs(wdDialogNoteOptions).Show
nothing happens and if I check the OnAction property of the found control,
it is empty.

On the other hand,
Dialogs(wdDialogInsertFootnote).Show
displays the known dialog box from the Insert menu (wdDialogInsertFootnote
=
370).

Searching for VBA help on NoteOptions leads to the help item "Visual Basic
Equivalents N" so mayby NoteOptions if no longer supported and should have
been removed.

I don't know, but my guess is that the command you refer to attempts to
execute the NoteOptions command.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Summer" wrote:

Lene,
InsertFootnote does not intercept in 2003 or 2007 of the toolbar command
nor
does it intercept in 2007 when using the macro.
It does work in 2003 as it should with Insert Reference Footnote.

Do you know why or is it being "fickle"? I use overtype as an intercept
(I've got text assigned) and it works fine.

"Lene Fredborg" wrote in message
...
To change the tab to a space, change the InsertFootnote macro as
follows:
Replace the following line in the macro:
.InsertAfter "." & vbTab
with
.InsertAfter ". "

(i.e. remove " & vbTab" and insert a space after the period between the
quotes).

However, if you have applied hanging indent to the Footnote Reference
style
as suggested in the article, you should keep the tab in order to have
the
text in the first line of each footnote aligned to the text in
subsequent
lines.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Nancy Vyh" wrote:

This fixed the problem. It is also possible to put only a space
instead
of a
tab. Now I have to share this with my students! Thanks

"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/MacrosVBA/...scptFnotes.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so
all may benefit.

"Nancy Vyh" Nancy wrote in message
...
Turabian 7th edition, as well as Chicago Manual 15 want the
numbers
in the
footnotes to be full size, followed by a dot. However, the
footnote
numbers
in the text are superscript. How can I get the numbers to be in a
different
style?
Chicago and Turabian seem to be working with software other than
that
used
by students!









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
Graduate research paper template for Turabian Sixth Edition. Herb Microsoft Word Help 2 October 6th 10 06:37 AM
Microsoft Student Edition vs Standard Edition Nana Microsoft Word Help 1 August 29th 07 12:37 AM
Does anyone have an academic template (Turabian 6th Edition) Barney Bahnerth Page Layout 3 August 23rd 07 08:10 AM
turabian Rob New Users 0 July 20th 07 04:26 AM
How to enable Footnotes in Word 2003 when View Footnotes is OFF? Leechado Microsoft Word Help 1 July 5th 06 03:43 PM


All times are GMT +1. The time now is 02:42 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"