메인 컨텐츠로 가기

Word에서 모든 들여 쓰기를 제거하는 방법은 무엇입니까?

일반적으로 Word에서 문서 서식을 지정할 때 다양한 유형의 들여 쓰기를 사용할 수 있습니다. 그러나 왼쪽 들여 쓰기,내어 쓰기, 첫 줄 들여 쓰기 및 오른쪽 들여 쓰기와 같은 모든 들여 쓰기를 제거하는 것에 대해 말하면 어떻게 빨리 완료 할 수 있습니까? 이 자습서에서는 Word에서 모든 들여 쓰기를 제거하는 세 가지 방법을 보여줍니다.

단 한 번의 클릭으로 Word 문서에서 모든 들여 쓰기를 제거하는 놀라운 도구입니다!

와 더불어 모든 들여 쓰기 제거 특징 Word 용 Kutools을 사용하면 Word에서 레이아웃으로 제거 할 수없는 공백이나 탭 문자로 생성 된 첫 줄 들여 쓰기를 포함하여 전체 Word 문서 또는 특정 선택 항목에서 모든 종류의 들여 쓰기를 쉽게 제거 할 수 있습니다.


Word 용 Kutools: 강력한 추가 기능에는 100개 이상의 도구가 포함되어 있으며 일상적인 Word 작업에서 작업 효율성을 80% 높일 수 있습니다! 지금 사세요!

Word 용 권장 생산성 도구

Word 용 Kutools: AI 통합 🤖, 100개 이상의 고급 기능으로 문서 처리 시간을 50% 절약할 수 있습니다.무료 다운로드

사무실 탭: Word(및 기타 Office 도구)에 브라우저와 유사한 탭을 도입하여 다중 문서 탐색을 단순화합니다.무료 다운로드


레이아웃 (페이지 레이아웃)으로 모든 들여 쓰기 제거

실제로 Word에서 페이지 레이아웃을 설정하여 선택 영역 또는 전체 문서에서 모든 들여 쓰기를 빠르게 제거 할 수 있습니다.

참고 : 이 방법은 공백이나 탭 문자로 만든 첫 줄 들여 쓰기를 제거 할 수 없습니다. VBA편리한 도구 제거 할 수 있습니다.

1. 들여 쓰기를 제거 할 단락을 선택하십시오.
전체 문서에서 들여 쓰기를 모두 제거해야하는 경우 문서를 클릭하여 활성화 한 다음 Ctrl + A 키를 함께 눌러 전체 문서를 선택할 수 있습니다.

2. 로 이동 그룹에 레이아웃 (또는 페이지 레이아웃) 탭을 클릭 한 다음 :
(1) 좌회전 상자에 입력하십시오 0 그리고 엔터 버튼 키;
(2) 권리 상자에 입력하십시오 0 그리고 엔터 버튼 키.

이제 모든 들여 쓰기 (공백 또는 탭 문자로 만든 첫 줄 들여 쓰기 제외)가 한 번에 제거됩니다.


단락 기능을 사용하여 모든 들여 쓰기 제거

Office 탭: Word, Excel, PowerPoint에 탭 인터페이스를 제공합니다...
OT 단어 중간 광고 100
지금 귀하의 작업흐름을 향상시키세요.      상세 보기       무료 다운로드

일반적으로 Word에서 왼쪽 들여 쓰기를 모두 제거하려면 특색. 그리고 여기에 왼쪽 들여 쓰기를 빠르게 제거 할 수있는 자세한 설명이 있습니다.

참고 : 이 방법은 공백이나 탭 문자로 만든 첫 줄 들여 쓰기를 제거 할 수 없습니다. VBA편리한 도구 제거 할 수 있습니다.

1. 들여 쓰기를 제거 할 단락을 선택하고 마우스 오른쪽 단추를 클릭 한 다음 상황에 맞는 메뉴에서. 스크린 샷보기 :

2. 단락 대화 상자에 다음을 입력하십시오. 0 둘 다로 좌회전권리 상자, 선택 (없음) 인사말 이달의 스페셜 드롭 다운 목록을 클릭하고 OK 단추. 스크린 샷보기 :

이제 모든 들여 쓰기 (공백 또는 탭 문자로 만든 첫 줄 들여 쓰기 제외)가 한 번에 제거됩니다.


VBA로 모든 들여 쓰기 제거

매크로에 능숙하다면 VBA 코드를 사용하여 선택 항목이나 전체 Word 문서에서 모든 들여 쓰기를 쉽게 제거 할 수 있습니다.

1. 들여 쓰기를 모두 제거 할 단락 또는 전체 문서를 선택합니다.

2. 프레스 Alt + F11 키를 함께 눌러 VBA 창을 열고 끼워 넣다 > 모듈 새 모듈 창을 만든 다음 창에 코드 아래에 붙여 넣습니다.

VBA : Word의 선택 항목 또는 전체 문서에서 모든 들여 쓰기 제거

Sub remove_indents()
With Selection.ParagraphFormat
.CharacterUnitLeftIndent = 0
.CharacterUnitRightIndent = 0
.CharacterUnitFirstLineIndent = 0
.LeftIndent = CentimetersToPoints(0)
.RightIndent = CentimetersToPoints(0)
.FirstLineIndent = CentimetersToPoints(0)
End With
End Sub
Sub remove_all_the_first_line_indent_spaces()
Dim i As Paragraph, n As Long
Application.ScreenUpdating = False 'close screen and refresh
For Each i In ActiveDocument.Paragraphs 'cycling in the pragraphs of the active document
For n = 1 To i.Range.Characters.Count
If i.Range.Characters(1).Text = " " Or i.Range.Characters(1).Text = " " Or i.Range.Characters(1).Text = Chr(9) Then
i.Range.Characters(1).Delete
Else: Exit For
End If
Next n
Next
Application.ScreenUpdating = True 'restore screen and refresh
End Sub
Sub remove_all_indents()
remove_indents
remove_all_the_first_line_indent_spaces
End Sub

3. 딸깍 하는 소리 달리기 버튼 또는 누르기 F5 VBA 코드를 적용하려면 키를 누르십시오.


Word 용 Kutools로 모든 들여 쓰기 제거

모든 들여 쓰기를 제거하기 위해 Format 함수는 들여 쓰기에 공백이나 탭 문자를 사용하는 첫 줄 들여 쓰기를 제거 할 수 없지만 VBA는 너무 복잡합니다. 이제 Word 용 Kutools를 사용하는 가장 편리한 방법을 권장합니다. Word 용 Kutools. 한 번의 클릭으로 모든 들여 쓰기를 제거 할 수 있습니다.

Word 용 Kutools: 강력한 추가 기능에는 100개 이상의 도구가 포함되어 있으며 일상적인 Word 작업에서 작업 효율성을 80% 높일 수 있습니다! 지금 사세요!

그냥 클릭 쿠툴s> 들여 쓰기 > 모든 들여 쓰기 제거, 모든 종류의 들여 쓰기가 전체 문서에서 즉시 제거됩니다.
특정 선택에서 모든 들여 쓰기를 제거해야하는 경우 먼저 콘텐츠를 선택한 다음 쿠툴s> 들여 쓰기 > 모든 들여 쓰기 제거.

Word 용 Kutools 들여 쓰기 제거 기능은 또한 모든 공백 / 탭 들여 쓰기 제거, 모든 첫 줄 들여 쓰기 제거, 모든 왼쪽 들여 쓰기 제거, 한 번의 클릭만으로 모든 오른쪽 들여 쓰기 제거를 지원합니다.

최고의 사무 생산성 도구

Word 용 Kutools - Over로 단어 경험을 향상시키세요 100 놀라운 기능!

🤖 Kutools AI 도우미: AI로 글쓰기를 변화시키세요 - 콘텐츠 생성  /  텍스트 다시 쓰기  /  문서 요약  /  정보 문의 문서 기반, 모두 Word 내에서

📘 문서 숙달: 페이지 분할  /  문서 병합  /  다양한 형식으로 선택 항목 내보내기(PDF/TXT/DOC/HTML...)  /  PDF로 일괄 변환  /  페이지를 이미지로 내보내기  /  한 번에 여러 파일 인쇄...

컨텐츠 편집: 일괄 찾기 및 바꾸기 여러 파일에 걸쳐  /  모든 사진 크기 조정  /  테이블 행과 열 바꾸기  /  표를 텍스트로 변환...

🧹 손쉬운 청소: 쓸어버리다 추가 공간  /  섹션 나누기  /  모든 헤더  /  텍스트 상자  /  하이퍼 링크  / 더 많은 제거 도구를 보려면 다음 페이지를 방문하세요. 그룹 제거...

광고 삽입물: 삽입 천 단위 구분 기호  /  확인란  /  라디오 버튼  /  QR 코드  /  바코드  /  대각선 표  /  방정식 캡션  /  이미지 캡션  /  테이블 캡션  /  여러 장의 사진  / 더 자세히 알아보세요. 그룹 삽입...

🔍 정밀한 선택: 핀포인트 특정 페이지  /  테이블  /  모양  /  제목 단락  / 탐색 기능 향상 배우기 기능 선택...

스타 강화: 어떤 위치로든 빠르게 이동  /  반복되는 텍스트 자동 삽입  /  문서 창 간을 원활하게 전환합니다.  /  11 변환 도구...

👉 이러한 기능을 사용해 보고 싶으신가요? Word 용 Kutools는 다음을 제공합니다. 60 일 무료 사용, 제한 없음! 🚀
 
Comments (7)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Actually I have found an easy way to do this, when I had a book typed in Word with the first line of each paragraph indented with the Tab key, and I wished to abolish the indents. You use Find and Replace.
You can't replace by simply typing ghe tab key directly into the Find box, because it will respond by moving the cursor to the next box, but it will accept the indented space if you copy it into the Find box with Copy and Paste.
So do the following.
Call up your document, go to the start of one of the indented spaces at the start of a paragraph, highlight it by holding down Shift +right arrow key, and copy with Control-C.Call up Find and Replace, put the cursor into the Find box, and Paste (Control-V). You should find the cursor leaps an appropriate number of spaces along the box.Go to he Replace box and type in whatever you want to replace the indent with (if nothing then just click in the Replace box before the next step)Press on the Replace All box and Bob's your uncle as they say in England. The indents have vanished.

This comment was minimized by the moderator on the site
This was fantastic. I have been trying to reformat a book to put on Kindle. Even the Kindle support team didn't know about this feature. It was fabulous. I just copied your VBA codes for indent and presto! Two weeks of utter frustration gone! It worked instantly. Thank you so much for this valuable information.
This comment was minimized by the moderator on the site
The scrolling function does not work on this site and the instructions didn't remove the indents, unfortunately.
This comment was minimized by the moderator on the site
Very Very Useful, thank you so much
This comment was minimized by the moderator on the site
Hello: I am an author who is about ready to shoot my laptop! For some unknown reason every time I hit the tab button the cursor moves down to the bottom of the text! It's frustrating as hell. I just want to be able to indent 5 spaces whenever I start a new paragraph. Sounds easy but for some reason this laptop is not letting me do it. I am using MS Word 2007. Thank you, Paul M Frazee
This comment was minimized by the moderator on the site
Thanks a lot, method 1 worked fine for me in Word 2013.
This comment was minimized by the moderator on the site
In support of this page and its author, I just want to extend my thanks. As a writer, I've posted stories to websites for my readers. After having done so, and making minor corrections here and there, I would then copy and paste the text as a new document to record all the new changes I had made. Only I found out the hardway, I couldn't get rid of the formatting. Your little VBA code worked miracles for me! I'm so glad I found this page! Thank you!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations