Double said:
Can someone help me with double subscript in powerpoint? That is, Dti with t
being the subscript of D and i being the subscript of t. Thanks.
Doug
Me again,
Another approach is doing some code that could be expanded to make a
line with more of your sentence.
**** Begin Code ****
Public Sub doubleSubScrpt()
'Make text box
With ActivePresentation.Slides(1).Shapes _
.AddTextbox(msoTextOrientationHorizontal, 0, 0, 300, 40)
.Name = "DofTii" 'Name text box
With .TextFrame
.TextRange.Text = "Dti = small change" 'Fill with text
With .TextRange
With .Characters(2, 1).Font 'Formats t
.BaselineOffset = -0.3
End With
With .Characters(3, 1).Font 'Formats i
.BaselineOffset = -0.5
End With
'Makes contents of the text box formatted
With .Font
.Size = 24
.Name = "Times New Roman"
.Italic = msoTrue
End With
'Makes those characters that were acting out
'in string straighten up.
With .Characters(5, 19).Font
.Name = "Arial"
.Italic = msoFalse
End With
End With
End With
End With
End Sub
**** End Code *****
Eldon