keyboard shortcut for title case in word 2010

19,391

Solution 1

You can't create shortcuts, either use the ALT navigation or press Shift+F3 multiple times,
there shouldn't be a problem pressing a keyboard shortcut twice to reach Title Case...

What you can do is create a quick access item and use Alt with a number, see this page.

Solution 2

I found a useful macro template at http://word.tips.net/T000215_Intelligent_Title_Case.html .

Reproduced here:

Sub TitleCase()
    Dim lclist As String
    Dim wrd As Integer
    Dim sTest As String

    ' list of lowercase words, surrounded by spaces
    lclist = " of the by to this is from a "

    Selection.Range.Case = wdTitleWord

    For wrd = 2 To Selection.Range.Words.Count
        sTest = Trim(Selection.Range.Words(wrd))
        sTest = " " & LCase(sTest) & " "
        If InStr(lclist, sTest) Then
            Selection.Range.Words(wrd).Case = wdLowerCase
        End If
    Next wrd
End Sub

This macro lets you adjust titles so that words of your choice (typically short words, conjunctions, etc.) are not capitalized.

See also https://english.stackexchange.com/questions/14/which-words-in-a-title-should-be-capitalized for detailed comments on capitalization styles.

Share:
19,391

Related videos on Youtube

user3224503
Author by

user3224503

Updated on September 17, 2022

Comments

  • user3224503
    user3224503 almost 2 years

    Is there a keyboard shortcut for 'Title Case' in Word 2010? If not, how can I create one?

    I do know of Shift+F3 for 'Change Case', but this shortcut toggles through uppercase, lowercase and title case.