Spacing between paragraphs
问题 In iText7 I need to create 5 lines of text at the top of a document that are centered to the page. The easiest way I found to do this is: doc.add(new Paragraph("text of line 1").SetTextAlignment(TextAlignment.CENTER)); doc.add(new Paragraph("text of line 2").SetTextAlignment(TextAlignment.CENTER)); etc. However there is a larger amount of space between each of the lines than I want. Within a paragraph you can set line leading, but how do I set leading between paragraphs in a document? Or am I