如何在python-docx中将表行保持在一起?

时间:2017-01-10 21:08:41

标签: python xml pagination python-docx

作为示例,我有一个通用脚本,使用python-docx输出默认表格样式(此代码运行正常):

import docx
d=docx.Document()
type_of_table=docx.enum.style.WD_STYLE_TYPE.TABLE

list_table=[['header1','header2'],['cell1','cell2'],['cell3','cell4']]
numcols=max(map(len,list_table))
numrows=len(list_table)

styles=(s for s in d.styles if s.type==type_of_table)


for stylenum,style in enumerate(styles,start=1):
    label=d.add_paragraph('{}) {}'.format(stylenum,style.name))
    label.paragraph_format.keep_with_next=True
    label.paragraph_format.space_before=docx.shared.Pt(18)
    label.paragraph_format.space_after=docx.shared.Pt(0)
    table=d.add_table(numrows,numcols)
    table.style=style
    for r,row in enumerate(list_table):
        for c,cell in enumerate(row):
            table.row_cells(r)[c].text=cell


d.save('tablestyles.docx')   

接下来,我打开了文档,突出显示了一个拆分表,并以段落格式,选中" Keep with next,"这成功地阻止了表在页面中分割:

enter image description here

以下是非破坏表的XML代码:

enter image description here

您可以看到突出显示的行显示了应该将表保持在一起的段落属性。所以我写了这个函数并将其粘贴在d.save('tablestyles.docx')行上面的代码中:

def no_table_break(document):
    tags=document.element.xpath('//w:p')
    for tag in tags:
        ppr=tag.get_or_add_pPr()
        ppr.keepNext_val=True


no_table_break(d)     

当我检查XML代码时,段属性标记设置正确,当我打开Word文档时,"保持下一个"对于所有表格检查框,但表格仍然在页面之间拆分。我错过了一个XML标签或某些阻止它正常工作的东西吗?

2 个答案:

答案 0 :(得分:1)

好,我也需要这个。我认为我们都做出了错误的假设,即Word的表属性中的设置(或在python-docx中实现该目标的等效方法)是为了防止 table 跨页拆分。不是-相反,它只是关于表的是否可以在页面之间拆分。

鉴于我们知道如何在python-docx中成功完成此操作,因此可以通过将每个表放在较大的主表的行中来防止将表拆分为多个页面。下面的代码成功完成了此操作。我正在使用Python 3.6和Python-Docx 0.8.6

import docx
from docx.oxml.shared import OxmlElement
import os
import sys


def prevent_document_break(document):
    """https://github.com/python-openxml/python-docx/issues/245#event-621236139
       Globally prevent table cells from splitting across pages.
    """
    tags = document.element.xpath('//w:tr')
    rows = len(tags)
    for row in range(0, rows):
        tag = tags[row]  # Specify which <w:r> tag you want
        child = OxmlElement('w:cantSplit')  # Create arbitrary tag
        tag.append(child)  # Append in the new tag


d = docx.Document()
type_of_table = docx.enum.style.WD_STYLE_TYPE.TABLE

list_table = [['header1', 'header2'], ['cell1', 'cell2'], ['cell3', 'cell4']]
numcols = max(map(len, list_table))
numrows = len(list_table)

styles = (s for s in d.styles if s.type == type_of_table)

big_table = d.add_table(1, 1)
big_table.autofit = True

for stylenum, style in enumerate(styles, start=1):
    cells = big_table.add_row().cells
    label = cells[0].add_paragraph('{}) {}'.format(stylenum, style.name))
    label.paragraph_format.keep_with_next = True
    label.paragraph_format.space_before = docx.shared.Pt(18)
    label.paragraph_format.space_after = docx.shared.Pt(0)

    table = cells[0].add_table(numrows, numcols)
    table.style = style
    for r, row in enumerate(list_table):
        for c, cell in enumerate(row):
            table.row_cells(r)[c].text = cell

prevent_document_break(d)

d.save('tablestyles.docx')

# because I'm lazy...
openers = {'linux': 'libreoffice tablestyles.docx',
           'linux2': 'libreoffice tablestyles.docx',
           'darwin': 'open tablestyles.docx',
           'win32': 'start tablestyles.docx'}
os.system(openers[sys.platform])

答案 1 :(得分:0)

已经困扰了几个小时,最后发现该解决方案对我来说很好。我只是在主题入门代码中更改了XPath,所以现在看起来像这样:

def keep_table_on_one_page(doc):
    tags = self.doc.element.xpath('//w:tr[position() < last()]/w:tc/w:p')
    for tag in tags:
        ppr = tag.get_or_add_pPr()
        ppr.keepNext_val = True

关键时刻是这个选择器

[position() < last()]

我们希望除每个表中的最后一行之外的所有行都与下一行保持一致