<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE course SYSTEM "course.dtd">
<course>
    <person id="Dr.Phil">
        <name>
            <family>Philosophy</family>
            <given>Doctor</given>
        </name>
        <email>dr.phil@foo.edu</email>
        <link subordinates="one.student two.student three.student four.student five.student"/>
    </person>
    <person id="one.student">
        <name>
            <family>Student</family>
            <given>One</given>
        </name>
        <email>one@foo.edu</email>
        <link instructor="Dr.Phil"/>
    </person>
    <person id="two.student">
        <name>
            <family>Student</family>
            <given>Two</given>
        </name>
        <email>two@foo.edu</email>
        <link instructor="Dr.Phil"/>
    </person>
    <person id="three.student">
        <name>
            <family>Student</family>
            <given>Three</given>
        </name>
        <email>three@foo.edu</email>
        <link instructor="Dr.Phil"/>
    </person>
    <person id="four.student">
        <name>
            <family>Student</family>
            <given>Four</given>
        </name>
        <email>four@foo.edu</email>
        <link instructor="Dr.Phil"/>
    </person>
    <person id="five.student">
        <name>
            <family>Student</family>
            <given>Five</given>
        </name>
        <email>five@foo.edu</email>
        <link instructor="Dr.Phil"/>
    </person>
</course>

