Displaying the exact extent of a system

Revision as of 22:39, 26 October 2025 by Jean Abou Samra (talk | contribs) (Import snippet from LSR)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

If you want to see exactly what amount of space takes your system, you can display it by overriding the stencil property in the System context: as you can see here, the system size is determined by including every postscript element such as slurs or key symbol.

\version "2.24.0"

%% http://lsr.di.unimi.it/LSR/Item?id=257

%%%
\layout { 
  \context {
    \Score
    \override System.stencil = #box-grob-stencil
  }
}

{
  \slurDown c4 ( g4  c''4)
}