PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(10);
Phrase phrase = new Phrase();
phrase.setHyphenation(new HyphenationAuto("ru", "ru", 2,2));
phrase.add(new Chunk("привет мир ",font3));
table.addCell(phrase);
document.add(table);
Тест отображается неправильно!
Можно ли применить «ru» к переносу слов?