Hello,
This syntax doesn't exist:
$item1->addText(array("text" => 'Chapter 1', "bold" => true));
For single strings you must use:
$item1->addText('Chapter 1', array("bold" => true));
Or for 'run of texts':
$item1->addText(array(array("text" => 'Chapter 1', "bold" => true)));
Regards.