blob: b7e6d13a9ff61f3cbca454ecafffdcf1fe239fa2 [file] [log] [blame]
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
<bib>
{
for $b in $input-context//book
where $b/publisher = "Addison-Wesley" and $b/@year > 1991
order by $b/title
return
<book>
{ $b/@year }
{ $b/title }
</book>
}
</bib>