What do we have to do, that this does not ignores the fontsize option?
$this->docx->createListStyle('inclusion', [0 => [
'type' => 'decimal', // ordered list
'align' => 'right', // align numbers to the right
'fontSize' => 10, // this seems to be ignored
'font' => 'Calibri',
'suff' => 'space', // space between list number and text
]]
);
$this->docx->addList($list, 'inclusion');