2008/9/11 Trevor Daniels <[EMAIL PROTECTED]>:
> Jo
>
> Have a look at the Known issues in section 1.2.5.2 Bar numbers in the 2.11
> Notation Reference - it is not possible to print a 1 on the first bar.

http://lsr.dsi.unimi.it/LSR/Item?u=1&id=504

...or if you want 1 and every nth:

#(define ((first-and-every-nth-bar-number-visible n) barnum)
          (or
            (= 1 barnum)
            (= 0 (modulo barnum n))))

\relative c' {
  \override Score.BarNumber #'break-visibility = #end-of-line-invisible
  \set Score.barNumberVisibility = #(first-and-every-nth-bar-number-visible 5)
  \bar ""
  \repeat unfold 10 { c1 }
}

Regards,
Neil


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to