3 回答

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊
這是搜索如何在 ReportLab 中制作嵌套列表的人們的最佳結(jié)果,
您可以將ListFlowable
alist
作為其項(xiàng)目之一。如果其中list
包含 aParagraph
和 another ,它將在同一個(gè)項(xiàng)目符號(hào)點(diǎn)內(nèi)ListFlowable
呈現(xiàn)嵌套ListFlowable
在 the 之后的Paragraph
權(quán)利。
t = ListFlowable(
? ? [
? ? ? ? Paragraph("Item no. 1", style),
? ? ? ? [
? ? ? ? ? ? Paragraph("Item no. 2", style),
? ? ? ? ? ? ListFlowable(
? ? ? ? ? ? ? ? [
? ? ? ? ? ? ? ? ? ? Paragraph("sublist item 1", style),
? ? ? ? ? ? ? ? ? ? ListItem(Paragraph('sublist item 2', style), bulletColor='red')
? ? ? ? ? ? ? ? ],
? ? ? ? ? ? ? ? bulletType='bullet',
? ? ? ? ? ? ? ? bulletFontSize=5,
? ? ? ? ? ? ? ? start='square',
? ? ? ? ? ? )
? ? ? ? ],
? ? ? ? Paragraph("Item no. 3", style),
? ? ],
? ? bulletType='1',
? ? bulletFormat='%s.',
? ? bulletFontSize=8,
)
不要費(fèi)心隱藏多余的項(xiàng)目符號(hào),或告訴 ReportLab 不要渲染它然后必須仔細(xì)管理value后續(xù)的ListItem項(xiàng)目符號(hào)。<ul>它與 HTML 中的s 和s完全一樣<ol>。
上面的代碼呈現(xiàn)如下:

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超6個(gè)贊
您可以通過將嵌套列表插入 ListItem 并將值參數(shù)設(shè)置為 0 來關(guān)閉一個(gè)列表項(xiàng)的編號(hào):ListFlowable([ Paragraph(...), ListItem(ListFlowable(...nested list...), value= 0) ListItem(Paragraph(...), value=2) # 讓列表繼續(xù)下去 ])

TA貢獻(xiàn)1898條經(jīng)驗(yàn) 獲得超8個(gè)贊
所以我現(xiàn)在想出解決這個(gè)問題的方法是將它再次嵌套在另一個(gè) ListFlowable 中,并將 leftIndent 設(shè)置為“0”,將 bulletColor 設(shè)置為“white”。
lf = ListFlowable([
ListFlowable([
ListItem(Paragraph(text1, styles["Normal"]), spaceAfter=12),
ListFlowable([ListItem(Paragraph(text1a, styles["Normal"])),
ListItem(Paragraph(text1b, styles["Normal"])),t
], bulletType='bullet', bulletFontSize= 5, bulletOffsetY= -2, leftIndent=10, start='circle')], bulletColor='white', leftIndent=0),
ListItem(Paragraph(text2, styles["Normal"]), spaceBefore=12),
], bulletType='1', bulletFontSize= 10)
添加回答
舉報(bào)