Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I am writing a scientific assignment which deals with isotopes. These are
identified by a superscript denoting the mass number directly above a subscript denoting the atomic number, followed by the chemical symbol eg U for uranium. Does anyone know how I can do this in Word? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
You can use an EQ field (or the equation editor) eg
{ EQ \O(12,24) } with (say) the 12 formatted as superscript and the 24 as subscript (substitute your own numbers as necessary). For repeats, save the formatted fields as autotext or autocorrect entries. -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Paul64 wrote: I am writing a scientific assignment which deals with isotopes. These are identified by a superscript denoting the mass number directly above a subscript denoting the atomic number, followed by the chemical symbol eg U for uranium. Does anyone know how I can do this in Word? |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Allen Wyatt in his WordTips newsletter just discussed this question:
http://wordtips.vitalnews.com/Pages/...e_Place. html His comment about the use of fields might be relevant to your situation. Mark "Paul64" wrote in message news ![]() I am writing a scientific assignment which deals with isotopes. These are identified by a superscript denoting the mass number directly above a subscript denoting the atomic number, followed by the chemical symbol eg U for uranium. Does anyone know how I can do this in Word? |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
On further reflection, it might be easier to format the EQ field if you used
the \A switch rather than the \O switch. The following macro will insert such formatted field . You can adjust the amount the current font size is reduced by at the line oRng.Font.Size = iSize * 0.5 Dim sNum As String Dim sDen As String Dim oRng As Range Dim iSize As Integer sNum = InputBox("Enter the superscripted number") sDen = InputBox("Enter the subscripted number") ActiveDocument.ActiveWindow.View.ShowFieldCodes = True Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:= _ "EQ \A(" & sNum & "," & sDen & ")", PreserveFormatting:=False Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend iSize = Selection.Font.Size Set oRng = Selection.Range oRng.Font.Size = iSize * 0.5 ActiveDocument.ActiveWindow.View.ShowFieldCodes = False With Selection .MoveRight Unit:=wdCharacter, Count:=1 .Font.Reset End With http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Graham Mayor wrote: You can use an EQ field (or the equation editor) eg { EQ \O(12,24) } with (say) the 12 formatted as superscript and the 24 as subscript (substitute your own numbers as necessary). For repeats, save the formatted fields as autotext or autocorrect entries. Paul64 wrote: I am writing a scientific assignment which deals with isotopes. These are identified by a superscript denoting the mass number directly above a subscript denoting the atomic number, followed by the chemical symbol eg U for uranium. Does anyone know how I can do this in Word? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can you print a superscript directly above a subscript? | Microsoft Word Help | |||
Superscript Subscript | Page Layout | |||
how do you have superscript and subscript on top of each other as. | Microsoft Word Help | |||
How do I set up a subscript and superscript, one above the other,. | Microsoft Word Help | |||
superscript or subscript | Microsoft Word Help |