// 标题,并给出书签的位置
Paragraph pTitle1 = new Paragraph(new Chunk("第一章")
.setLocalDestination("1"));
Chapter chapter1 = new Chapter(pTitle1, 1);
Paragraph sTitle1 = new Paragraph("第一节");
Section section1 = chapter1.addSection(sTitle1,1);
section1.add(pContext1);
用这个方法生成的目录但是,按ctrl不能链接过去;
是什么地方没设置吗?
还有没有其他的方法生成目录,
还有我想给第一页加上背景图,不知道怎么加