tables overlay issue after pdf conversion

Only one paragraph is concerned by this issue in the whole docx : it’s composed of several tables
but the pdf conversion produces this overlay

any idea ?

Hi Logan,

The problem occurs because these are all floating tables (“Text wrapping” set to “Around”) that appear one after another:

image

As a workaround, try changing them to inline tables (“Text wrapping” set to “None”).
You can also use this to achieve the same:

foreach (var table in document.Sections.SelectMany(s => s.Blocks).OfType<Table>())
    table.TableFormat.Positioning.ClearPositioning();

I hope this helps.

Regards,
Mario

Thanks
it works perfectly !