/**
  * Add external slide
  *
  * @param  \PhpOffice\PhpPowerpoint\Slide $slide External slide to add
  * @throws \Exception
  * @return \PhpOffice\PhpPowerpoint\Slide
  */
 public function addExternalSlide(Slide $slide)
 {
     $slide->rebindParent($this);
     return $this->addSlide($slide);
 }