1\header {
2
3  texidoc = "If no outline is available (eg. for embedded PS),
4  the bounding box is used as a fallback."
5
6}
7
8\version "2.22.0"
9
10#(ly:set-option 'debug-skylines #t)
11
12#(define-markup-command (emptybox layout props)
13  ()
14  (ly:make-stencil
15   (list 'embedded-ps
16         "")
17   '(0 . 10) '(0 . 10)))
18
19\score {
20  <<
21    \new Staff { c' }
22    \new Staff { c'^\markup \emptybox }
23  >>
24}
25