blob: 0664676fc71c9692169228a98ed36f847e2c274f [file] [log] [blame]
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
<bib>
{
for $b in $input-context//book[author]
return
<book>
{ $b/title }
{ $b/author }
</book>
}
{
for $b in $input-context//book[editor]
return
<reference>
{ $b/title }
{$b/editor/affiliation}
</reference>
}
</bib>