
The first two enumerations in this screenshots are created using code like this, where I use the styles List Bullet and List Number.
document.add_paragraph(
'first item in unordered list', style='List Bullet'
)
document.add_paragraph(
'first item in ordered list', style='List Number'
)
But in the result (screenshot) this enumerations do not look the same way as the original MS Word enumeration (the 3rd in the screenshot) does. The indention is missing.
I am assuming that I miss a basics concept here?
The first two enumerations in this screenshots are created using code like this, where I use the styles
List BulletandList Number.But in the result (screenshot) this enumerations do not look the same way as the original MS Word enumeration (the 3rd in the screenshot) does. The indention is missing.
I am assuming that I miss a basics concept here?