Spontini (v1.25) is behaving oddly in the following example. In SVG mode the following code will compile, but both pages will not be available in the browser panel, only the first page. If Spontini is then set to PDF mode, it will behave as expected, but at the cost of the graphic functionality that it offers in SVG mode. Commenting out the 'first-page-number' variable avoids this but then the page numbering is off.
--David
%%%%%%%%
\version "2.24.4"
\book {
\bookpart {
\score {
c'1
}
\pageBreak
\score {
d'1
}
}
\paper{
print-first-page-number = ##t
first-page-number = 2
}
}
%%%%%%%%