Register Lost your password?

public function fAddEndnote(array arrParamsEndNote)

Parameters

$arrParamsEndNote : This parameter is an associative array and you must indicate the key and the value

  • ‘textEndNote’ (The endnote is a supplementary information which does not interrupt the normal reading flow of the document and it appears at the end of the page)
  • ‘textDocument’ (A reference mark within the text that indicates that additional information is available in a footnote or endnote. Each instance is properly numbered to allow the readers to find the information at the end of the page, the end of the document or at the end of the section.)
  • ‘font’ (A specific size and style of font type within a type family. Example ‘Times New Roman’, ‘Arial’,…)

Examples

Example 1


require_once('../classes/cCreateDocx.inc');
$objDocx = new cCreateDocx();
  $objDocx->fAddEndnote(array('textDocument' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.',
  		'textEndNote' => 'risas al final'));
$objDocx->fCreateDocx('ejemplo_Endnotes');

Your comments