How to hide measure numbers in Lilypond?

Viewed 411

In Lilypond, by default measure numbers are printed in each new line.

How to hide these numbers?

bars with measure numbers

Thanks

1 Answers

It is actually at the end of the documentation:

\layout {
    \context {
        \Score
        \omit BarNumber
    }
}
Related