单词2010中标题大小写的键盘快捷键


1

Word 2010中的“标题案例”是否有键盘快捷键?如果没有,我该如何创建一个?

我知道 转移 + F3 对于“更改案例”,但此快捷方式可以切换大写,小写和标题大小写。

Answers:


1

您无法使用ALT导航或按下创建快捷方式 转移 + F3 多次,
按键盘快捷键两次以达到标题案例应该没有问题...

您可以做的是创建一个快速访问项目并使用 Alt键 有一个数字, 看到这个页面


1

我发现了一个有用的宏模板 http://word.tips.net/T000215_Intelligent_Title_Case.html

转载于此:

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

此宏可让您调整标题,以便您选择的单词(通常是短单词,连词等)不会大写。

也可以看看 https://english.stackexchange.com/questions/14/which-words-in-a-title-should-be-capitalized 有关大写形式的详细评论。


0

要将第一个字母更改为大写,请选择要更改的单词或句子,然后按 转移 + F3 一旦。

如果按 转移 + F3 两次然后整个句子将被改变。此键适用于大写和小写。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.