如何避免文档文本和标题重叠?
答案 0 :(得分:1)
您必须为文档设置边距,以便考虑标题使用的空间。看看这个example。特别是,您对此Document constructor感兴趣:
Document doc = new Document(Rectangle pageSize,
float marginLeft,
float marginRight,
float marginTop, // <-- you want to play with this paramater
float marginBottom)