첫 페이지의 머리글 바닥글을 개별적으로 설정합니다.

1655 단어
from  docx import  Document
from  docx.shared  import  Pt
from  docx.enum.text  import  WD_ALIGN_PARAGRAPH  # 
 =Document(r'E:\word \ .docx')
 = .sections[0]
 .different_first_page_header_footer=True  # 
 = .first_page_header
 = .paragraphs[0].add_run(' ')
 .font.size=Pt(12)
 .paragraphs[0].alignment=WD_ALIGN_PARAGRAPH.CENTER
 = .first_page_footer
 = .paragraphs[0].add_run(' ')

 .save(r'E:\word \ .docx')

좋은 웹페이지 즐겨찾기