bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Formatting > Character Formatting > Adjusting Small Caps Text

Adjusting Small Caps Text

Summary: Small caps can be a handy text treatment that makes selected text stand out from the text around it. It is often used for headings within a document. This tip explains how to apply the small caps attribute, and includes a macro that allows you to apply it very quickly. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

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:

  1. Select the current word (or group of words)
  2. Make sure the first letter of each word is uppercase
  3. Set the Small Caps character attribute

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


Create and Merge! Discover how to use Word's mail merge tool to create your own custom documents. WordTips: Mail Merge Magic includes all the information you need to make your merges more productive.

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)