Hi everyone!

I need to write several musical elements one after the other in the same
staff separated by a double bar.Each element can last less or more than one
bar (could be for instance 1 bar and a half),and I need an instruction so
the beat count starts after each double bar.

This is my code:

\version "2.18.2"
#(ly:set-option 'midi-extension "midi")

\header {
  title = "aaa"
}

\score {
    <<
        \new StaffGroup
        <<
            \new Staff = "elementosOriginales"
            {
                \clef "treble"
                \set Staff.instrumentName = #"Original"
                \set Staff.midiInstrument = #"acoustic grand"
                \time 4/4
                \omit Staff.TimeSignature
                \new Voice
                {
                     a'4 a'4 a'4 a'4  a'4 \bar "|."
                     a'4 a'4 a'4 a'4  a'4 \bar "|."
                     a'4 a'4 a'4 a'4  a'4 \bar "|."
                     a'4 a'4 a'4 a'4 a'4  a'4 \bar "|."
                     a'4 a'4 a'4 a'4 a'4  \bar "|."
                }
            }
      >>
   >>

\layout { indent = #15  }
}

as you can see in the output the automatic bars apear after 4 notes. I need
the automatic bars 4 notes AFTER each double bar. Those are independent
musical elements, all of them written in 4/4.

I've tried with cadenzaOn/Off, hiding the bars (the double bars disappear)
and nothing.

Anybody can give a hand please?

Thank you, best regards

Reply via email to