- Separate clause for sorting
 
        
        		
            List all books with price greater than $100, in order by first author;
            within each group of books with the same first author, list the books in order by
            title:
         
        
	document("bib.xml")//book[price > 100] sortby (author[1], title)