Word 문서에서 구역 나누기 유형을 변경하는 2 가지 빠른 방법

지금 공유 :

이 기사에서는 Word 문서에서 구역 나누기 유형을 변경하는 두 가지 빠른 방법이 있습니다.

The most used types of section break in Word are “Next Page” and “Continuous”. To insert the first one means to start a new page for the new section. This divides sections in a clear view. But when it comes to printing, extract papers will be needed. Certainly, it’s not an environment-friendly way. Then you can consider using the “Continuous” break, which can save you many papers but may not do well in meeting the separation demand.

따라서 특정 요구 사항에 따라 선택할 수있는 방법을 소개하고자합니다.Word 문서에서 구역 나누기 유형 변경

방법 1 : 페이지 설정 변경

  1. First of all, put cursor inside a target section and click the “Page Layout” tab in the Ribbon.
  2. 그런 다음 "페이지 설정"그룹의 화살표 버튼을 클릭하여 동일한 이름 대화 상자를 엽니 다.
  3. 그런 다음 상자에서 "레이아웃"탭을 클릭합니다.
  4. And choose desired type of section break from the combo box of “Section start”.
  5. 다음으로 "적용 대상"콤보 상자에서 적용 범위를 선택합니다. 단일 섹션 나누기 또는 여러 섹션 나누기의 유형을 변경할 수도 있습니다. Click "Page Layout"->Click Arrow Button->Click "Layout"->Choose Where the Section Starts->Choose an Applying Range->Click "OK"

결과는 다음과 같습니다.섹션 나누기 유형 변경의 효과

방법 2 : Word 매크로를 실행하여 문서의 모든 구역 나누기 유형 변경

  1. To start with, press “Alt+ F11” to trigger the VBA editor in Word.
  2. 다음으로“Normal”프로젝트를 클릭하고 메뉴 바에서“Insert”탭을 클릭합니다.
  3. 그런 다음 드롭 다운 메뉴에서 "모듈"을 선택합니다."일반"클릭-> "삽입"클릭-> "모듈"클릭
  4. 다음으로 새 모듈을 두 번 클릭하여 엽니 다.
  5. 이제 편집 공간에서 다음 코드를 붙여 넣으십시오.
Sub ChangeNextPageBreakToContinuous()
  Dim nSectionNum As Integer
  Dim objDoc As Document
 
  Application.ScreenUpdating = False
 
  Set objDoc = ActiveDocument
  nSectionNum = objDoc.Sections.Count

  For nSectionNum = nSectionNum To 1 Step -1
    With objDoc.Sections(nSectionNum).Range.PageSetup
      If .SectionStart = wdSectionNewPage Then
        .SectionStart = wdSectionContinuous
      End If
    End With
  Next nSectionNum
 
  Application.ScreenUpdating = True
End Sub
  1. 매크로를 실행하려면 "F5"를 누르십시오.코드 붙여 넣기-> "실행"클릭

이 매크로는 "다음 페이지"유형의 모든 섹션 나누기를 "연속"으로 변경합니다. 결과는 방법 1의 결과와 동일합니다.

이제 모든 연속 구역 나누기를 "다음 페이지"유형으로 변경해야하는 경우 다음 매크로를 사용하십시오.

Sub ChangeContinuousBreakToNextPageBreak()
  Dim nSectionNum As Integer
  Dim objDoc As Document
 
  Application.ScreenUpdating = False
 
  Set objDoc = ActiveDocument
  nSectionNum = objDoc.Sections.Count

  For nSectionNum = nSectionNum To 1 Step -1
    With objDoc.Sections(nSectionNum).Range.PageSetup
      If .SectionStart = wdSectionContinuous Then
        .SectionStart = wdSectionNewPage
      End If
    End With
  Next nSectionNum
 
  Application.ScreenUpdating = True
End Sub

문서 복구 도구

Word 문제를 접하고 결국 손상된 docx. 따라서 즉시 조치를 취해야합니다. 데이터를 복구하는 가장 빠른 방법은 자격을 갖춘 수리 도구를 선택하는 것입니다.

저자 소개 :

Vera Chen은 데이터 복구 전문가입니다. DataNumen, Inc.는 다음과 같은 데이터 복구 기술 분야의 세계적 리더입니다. xls 수리 pdf 수리 소프트웨어 제품. 자세한 내용은 WWW.datanumen.COM

지금 공유 :

댓글이 닫혀있다.