In the GPars build.gradle I have:
asciidoctor {
sources {
include 'index.adoc', 'quick_reference.adoc'
}
backends 'html5','pdf'
attributes toc: 'left',
doctype: 'book',
icons: 'font',
sectlink: true,
sectanchors: true,
numbered: true,
linkattrs: true,
imagesdir: 'images',
'source-highlighter': 'coderay',
stylesheet: 'css/style.css',
'pdf-stylesdir': 'theme',
'pdf-fontsdir': 'fonts',
'pdf-style': 'gpars'
}
It seems though that the pdf-fontsdir entry provides the one and only font file location rather adding to a path. Is this as it should be? Is there a way of adding a directory to a font file search path?