Как сделать отдельные слова или строки жирными в абзаце с помощью phppresentation.
$textRun = $shape->createTextRun('Your content is centered around promotion of events. While we encourage continuing this practice based on the strong results.');
$textRun->getFont()->setSize(13);
$textRun->getFont()->setColor($colorBlack);
$textRun->getFont()->setName('Montserrat');
В вышеприведенном тексте я хочу сделать «продвижение событий» жирным шрифтом и другим текстом как есть. Как я могу это сделать в библиотеке phppresentation.
Заранее спасибо.