Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrnirva/39a565e2f3d5ece9a89dc3f6a860bcdc to your computer and use it in GitHub Desktop.
Save mrnirva/39a565e2f3d5ece9a89dc3f6a860bcdc to your computer and use it in GitHub Desktop.
Chapter bolum1 = new Chapter("Bölüm", 1);
Paragraph bolum1_icerik = new Paragraph("Bölüm 1 İçerik");
bolum1.add(bolum1_icerik);
pdfDosyam.add(bolum1);
Chapter bolum2 = new Chapter("Bölüm", 2);
bolum2.add(new Paragraph("Bölüm 2 İçerik"));
pdfDosyam.add(bolum2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment