2009/10/23 Frank Steinmetzger <war...@gmx.de>:
> Hi there,

> I've entered a Distler piece with lots of different time signatures. Now that
> I'm finished and doublechecked with the original, I was about to commit it to
> my choir, when I noticed that there were no visible bar numbers.

I'm guessing you've moved the Timing_translator to the Staff context
so you can have independent time signatures.  If so, you won't get any
bar numbers unless you also move the Bar_number_engraver, since it
can't see the context properties which the Timing_translator maintains
(e.g., currentBarNumber and measurePosition).

\score {
  \relative c' <<
    \new Staff \with { \consists "Bar_number_engraver" } {
      c4 d e f \break
      g4 a b c
    }
    \new Staff {
      \time 3/4
      c,4 d e4
      f4 \bar "" g a
      \time 2/4
      b4 c
    }
  >>
  \layout {
    \context {
      \Score
      \remove "Timing_translator"
      \remove "Default_bar_line_engraver"
      \remove "Bar_number_engraver"
    }
    \context {
      \Staff
      \consists "Timing_translator"
      \consists "Default_bar_line_engraver"
    }
  }
}

Regards,
Neil


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to