aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_biblio.yml4
-rwxr-xr-xbin/compile-book4
2 files changed, 7 insertions, 1 deletions
diff --git a/_biblio.yml b/_biblio.yml
index e69de29..c86ad9e 100644
--- a/_biblio.yml
+++ b/_biblio.yml
@@ -0,0 +1,4 @@
+# Bibliography sources
+#bibliography:
+# # Custom entries
+# - images/images.bib
diff --git a/bin/compile-book b/bin/compile-book
index 42f7f67..75c417b 100755
--- a/bin/compile-book
+++ b/bin/compile-book
@@ -18,7 +18,9 @@ rm -f $OUTPUT.md $OUTPUT.Rmd
cat _bookup.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md
# Bibliography
-cat _biblio.yml >> $OUTPUT.md ; echo "" >> $OUTPUT.md
+find -name _biblio.yml | while read file; do
+ cat $file >> $OUTPUT.md ; echo "" >> $OUTPUT.md
+done
# YAML headers
for file in $BASEDIR/structure/00*.yml; do