| PERSON or //PERSON | Any element named "PERSON" |
| /PEOPLE | Elements named "PEOPLE" that are children of the root node. |
| PERSON/NAME | Elements named "NAME" that are children of the element named "PERSON". |
| /PEOPLE/PERSON | Elements named "PEOPLE" that are children of the element named "PEOPLE" which is a child of the root element. |
| PEOPLE//NAME | Elements named "NAME" that have the element "PEOPLE" as an ancestor. |
| PEOPLE/*/NAME | Elements named "NAME" that have the element "PEOPLE" as an grandparent (Parent of its parent). |
| PERSON[NAME] | Elements named "PERSON" that have a child the element named "NAME". |