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

<!-- root ELEMENT   student   contains a choice of only one   first | last | #PCDATA   elements or data 
  repeated zero or more times
  The #PCDATA choice must be first.
-->

<!DOCTYPE name 
  [
  <!ELEMENT name (#PCDATA|first|last)* >
  <!ELEMENT first EMPTY >
  <!ELEMENT last EMPTY >
  ] >

<name>
  first
  <first></first>
  before
  <last></last>
  then
  <last></last>
  before
  <first></first>
</name>