<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>

<!-- a general entity may contain more than one regular entity.
  Note: every regular entity must have both the opening and closing tag.
-->

<!DOCTYPE name 
  [
  <!ELEMENT name (#PCDATA|first|last)* >
  <!ELEMENT first (#PCDATA) >
  <!ELEMENT last (#PCDATA) >
  <!ENTITY jones "<first>Fredrick</first><last>Jones</last>" >
  <!ENTITY smith "<first>Fredrick</first><last>Smith</last>" >
  ] >

<name>
  &jones;
  and
  &smith;
  are not Kings.
</name>