I couldn't find anything on this issue so I'm trying to raise this as a new question:
I work frequently present Jupyter Notebooks as slides using RISE, which presents notebooks as reveal.js slides. I know that RISE allows to adding headers, footers, and background images to slides by adding the following to the Notebook metadata:
{
...
"rise": {
"backimage": "mybackimage.png",
"header": "<h1>Hello</h1>",
"footer": "<h3>World!</h3>"
}
}
This is good, but I'd like the image to actually be part of the footer (or at least position it to the bottom left).
Does anyone know a way to do add this other than having to manually add an image on every slide?
Thanks!
Paul