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

<!-- The ELEMENT   name   is specified as ANY
  This allows any of the elements in any order, with any repeat.
 -->

<!DOCTYPE name 
  [
  <!ELEMENT name ANY >
  <!ELEMENT first EMPTY >
  <!ELEMENT last EMPTY >
  ] >

<name>
  <last></last>
  <first></first>
  <first></first>
</name>