textDocument.addParagraph("fourth table (left space of 15mm and 10mm space right)");
table = Table.newTable(textDocument, 1, 12, 1.5, 1.0);
columnsWidth = new long[] { 5, 8, 10, 11, 7, 7, 11, 12, 9, 19, -1, 3 };
setColumnsWidth(table, columnsWidth);
textDocument.addParagraph("fifth table (space of -1 cm to the left and right space of -1.5cm)");
table = Table.newTable(textDocument, 1, 10, -1, -1.5);
columnsWidth = new long[] { 32, 8, 10, 11, 7, 7, 16, 12, -1, 18 };
setColumnsWidth(table, columnsWidth);
textDocument.addParagraph("sixth table (merging of columns 3-4, row 0, and other merging)");