/**
  * Add a named destination (similar to <a name="foo">...</a> in html)
  *
  * @param string $anchorname The name of the named destination
  */
 function add_named_dest($anchorname)
 {
     $this->_pdf->addDestination($anchorname, "Fit");
 }