Word 2003에 붙여넣으면 기본값은 Keep Source Formatting
. 기본값을 로 어떻게 변경할 수 있나요 Keep Text Only
?
답변1
Word 2003에서는 "텍스트만 유지"를 기본값으로 설정할 수 없는 것 같습니다.
하지만 여기에 자세히 설명된 대로 매크로를 만들 수 있습니다.https://cybertext.wordpress.com/2009/07/02/word-keyboard-shortcut-to-paste-unformatted-text/
기본적으로 사용자는 다음을 수행합니다. 1. 매크로를 만듭니다. 2. 템플릿에 매크로를 추가하세요. 3. 매크로에 키보드 단축키를 할당합니다.
이렇게 하면 텍스트만 붙여넣고 싶다면 키보드 단축키를 사용하면 됩니다.
답변2
저도 비슷한 요구가 있어서 글을 썼습니다오토핫키전역 "텍스트만 붙여넣기" 옵션을 생성하는 스크립트입니다. 완벽하지는 않지만 꽤 효과적입니다. Excel에는 특별한 경우가 있으며 Word용으로도 만들 수 있습니다.
; Key: Win+V
; Cmd: Paste unformatted text
#v::
IfWinActive Microsoft Excel
{
Send !es{Down 2}{Enter} ;Edit menu, Paste Special, Text only
; This still works in 2007 and 2010 even though the Edit menu doesn't exist anymore
}
Else
{
clipOld := ClipboardAll ;Save the entire clipboard
clip := Clipboard ;Save just the text portion of the clipboard
Clipboard := clip ;Replace the clipboard with just the text portion
Send, ^v ;Paste the text
Clipboard := clipOld ;Replace the clipboard with its original contents
}
Return