aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-book-title-maintitle-series.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/biblatex-book-title-maintitle-series.md')
-rw-r--r--test/command/biblatex-book-title-maintitle-series.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/command/biblatex-book-title-maintitle-series.md b/test/command/biblatex-book-title-maintitle-series.md
new file mode 100644
index 000000000..c58932aa8
--- /dev/null
+++ b/test/command/biblatex-book-title-maintitle-series.md
@@ -0,0 +1,39 @@
+```
+% pandoc -f biblatex -t markdown -s
+@book{item1,
+ Author = {Author, Al},
+ Date = {2013},
+ Hyphenation = {french},
+ Location = {Location},
+ Mainsubtitle = {Mainsubtitle},
+ Maintitle = {Maintitle},
+ Maintitleaddon = {Maintitleaddon},
+ Number = {3},
+ Publisher = {Publisher},
+ Series = {Series},
+ Subtitle = {Subtitle},
+ Title = {Title of the Book},
+ Titleaddon = {Titleaddon},
+}
+
+^D
+---
+nocite: '[@*]'
+references:
+- author:
+ - family: Author
+ given: Al
+ collection-number: 3
+ collection-title: Series
+ id: item1
+ issued: 2013
+ language: 'fr-FR'
+ publisher: Publisher
+ publisher-place: Location
+ title: 'Maintitle: Mainsubtitle. Maintitleaddon'
+ type: book
+ volume-title: 'Title of the Book: Subtitle. Titleaddon'
+---
+
+
+```