columnsWidth = new long[] { 100 };
setColumnsWidth(table, columnsWidth);
table.setVerticalMargin(0.25, 0.5);
textDocument.addParagraph("Above, other table with top space of 0.25cm and bottom spacin of 0.5cm");
textDocument.addParagraph(null);
textDocument.addParagraph(null);
textDocument.addParagraph("below, table in footer Standard (bug with getWidth, but the widths are good)");
table = textDocument.getFooter().addTable(1, 8);
columnsWidth = new long[] { 5, 19, 11, 14, 27, 12, 75, 4 };
setColumnsWidth(table, columnsWidth);