Hola,
Necesitas utilizar la opciĆ³n footnoteMark (o la correspondiente para endnote) por ejemplo:
$footnote->addFootnote(
array(
'textDocument' => 'footnote',
'textFootnote' => $html,
'footnoteMark' => array(
'customMark' => '*',
'bold' => true
)
)
);
$text = array();
$text[] = array('text' => 'Here comes the ');
$text[] = $footnote;
$text[] = array('text' => ' and some other text.');
$docx->addText($text);
Saludos.