Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Phil Gearing
 
Posts: n/a
Default How do I insert roman numbers into Word documents

Many procedures refer to volume 1, 2 ,3 etc but they are always produced in
roman numerals, so how can I insert these characters in a normal text
document to provide correct referencing?
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Cooz
 
Posts: n/a
Default How do I insert roman numbers into Word documents

Hi Phil,

If the numbers you speak of are in a field, just add the \* Roman switch.
e.g. { QUOTE "1081" \* Roman } results in MLXXXI.

Good luck,
Cooz
--
PS: If this is a satisfying answer to your question and you're logged in via
the Microsoft site, please click Yes to "Did this post answer the question?".
Thanks.


"Phil Gearing" wrote:

Many procedures refer to volume 1, 2 ,3 etc but they are always produced in
roman numerals, so how can I insert these characters in a normal text
document to provide correct referencing?

  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey
 
Posts: n/a
Default How do I insert roman numbers into Word documents

Phil,

If you are numbering steps I would create an autotext entry using a SEQ
Field with Roman format switch

something like { SEQ myromanseq \* Roman }

  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Phil Gearing
 
Posts: n/a
Default How do I insert roman numbers into Word documents

Thanks guys for your prompt response, but I am clearly too stupid or basic to
follow your instructions. I am probably only looking at 1 - 9 in romans.

many thanks

Phil

"Phil Gearing" wrote:

Many procedures refer to volume 1, 2 ,3 etc but they are always produced in
roman numerals, so how can I insert these characters in a normal text
document to provide correct referencing?

  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Charles Kenyon
 
Posts: n/a
Default How do I insert roman numbers into Word documents

If you are typing them, how about typing them?
I
II
III
IV
V
VI
VII
VIII
IX

Or are you trying to use some kind of cross reference field?
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Phil Gearing" wrote in message
...
Thanks guys for your prompt response, but I am clearly too stupid or basic
to
follow your instructions. I am probably only looking at 1 - 9 in romans.

many thanks

Phil

"Phil Gearing" wrote:

Many procedures refer to volume 1, 2 ,3 etc but they are always produced
in
roman numerals, so how can I insert these characters in a normal text
document to provide correct referencing?





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey
 
Posts: n/a
Default How do I insert roman numbers into Word documents

Phil,

Are you wanting to number items as you type these procedures?

The SEQ field can be used for this. To build a SEQ field, create a
pair of field delimiters by pressing CTRL+F9. Inside the braces type
SEQ and "a unique sequence name"

Example: { SEQ mynumber }

Now right click the field click update field and toggle field codes. A
"1" appears.
If you enter that field again, press CTRL+a to select all fields then
press F9. The second SEQ field produces "2." If you add the format
switch \*Roman to the fields then they produce I and II

If you save the field construction {SEQ mynumber \* Roman } as and
AutoText entry by:

1. Selecting it
2. Pressing ALT+F3
3. Giving it a name

Then you can use the AutoText entry to number a list as you type.

Here are a couple of macros that you coul use to convert existing
arabic numbers to Roman numbers. One simply converts from arabic to
roman the second (called macro) creates a sequenced in roman numbers.

Sub NumberFormatter()
With Selection.Find
.Text = "[0-9]{1,}"
.MatchWildcards = True
While .Execute
'ConvertNumberToRoman Selection.Text
ConvertNumberToRomanSeq Selection.Text
Wend
End With
End Sub
Sub ConvertNumberToRoman(pNum As Long)
With Selection
.Delete
.Fields.Add _
Range:=Selection.Range, _
Type:=wdFieldExpression, _
Text:=Str(pNum) & "\* Roman"
.MoveStart Unit:=wdCharacter, Count:=-1
.Fields(1).Unlink
End With
End Sub
Sub ConvertNumberToRomanSeq(pNum As Long)
With Selection
.Delete
.Fields.Add _
Range:=Selection.Range, _
Type:=wdFieldSequence, _
Text:=Chr(34) & "myseq" & Chr(34) & " \* Roman"
.Collapse wdCollapseEnd
End With
End Sub

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
3 different page number formats-How??!! cpatton Tables 3 April 24th 06 01:05 PM
Word should allow to 'divide' page by 3 or 4, not just 2 CandasK Page Layout 2 February 28th 06 10:16 PM
How can Word display full path of a file in the title bar? SAsif Microsoft Word Help 1 January 26th 06 04:32 PM
is word perfect compatible with office word? Noreen Microsoft Word Help 1 May 11th 05 11:17 PM
Macros - Keyboard Commands Janet Microsoft Word Help 6 April 11th 05 05:28 AM


All times are GMT +1. The time now is 10:59 AM.

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"