The parent
axis refers
to the node that's the immediate parent of the context node. For
example,
/descendant::HUSBAND[position()=1]/parent::*
refers
to the parent element of the first HUSBAND
element
in the document.
Without a node test the parent axis can be abbreviated by a
..
as in
//HUSBAND[position()=1]/..
.