Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Collapsing and Expanding Subdocuments
Converting Word for DOS Documents
Two Keys with the Press of One
Opening the Document Map by Default
Small caps are a typographic convention in which no lowercase letters are used. Traditionally, the first letter of the word appears a bit larger than the rest of the letters in a word, even though all letters are uppercase. When you use the Small Caps character attribute, Word coverts the letters to their proper appearance.
To convert words properly to small caps, you need to go through several steps, as follows:
If you are using small caps text sparingly in a document, then these steps are rather quick and painless. However, if you are using it quite a bit, then repeatedly performing the steps can get tiresome. The following is a macro you can use to perform these steps automatically:
Sub MakeSmallCaps()
If Selection.Type = wdSelectionIP Then
Selection.MoveLeft Unit:=wdWord, Count:=1
Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
End If
Selection.Range.Case = wdTitleWord
Selection.Font.SmallCaps = True
End Sub
Tip #271 applies to Microsoft Word versions: 97 2000 2002 2003 2007
Create Rock-Solid Lists! Bulleted and numbered lists can help make your writing clearer and easier to follow. If not done properly, however, they can be a nightmare to work with. Discover the ins and outs of Word's lists with this great reference available in two versions.