diff options
Diffstat (limited to 'doc/src/snippets/patternist/introExample2.xq')
-rw-r--r-- | doc/src/snippets/patternist/introExample2.xq | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/snippets/patternist/introExample2.xq b/doc/src/snippets/patternist/introExample2.xq new file mode 100644 index 0000000..411cc17 --- /dev/null +++ b/doc/src/snippets/patternist/introExample2.xq @@ -0,0 +1,5 @@ +<bibliography> +{ + doc($file)/bib/book[publisher = $publisher and @year > $year]/<book year="{@year}">{title}</book> +} +</bibliography> |