<livres>
{
for $f in $bib/bib/book
where $f/@year>1993
return <livre>
<titre> {$f/title/text()} </titre>
<auteurs>
{ for $a in $f/author
return $a/last/text()
}
</auteurs>
</livre>
}
</livres>
<truc/>, (<machin/>, <chose/>)
for $f in $bib/bib/book
where $f/title="Data on the Web"
return for $a in $f//author
return ($a/first, $a/last)