If you read the section on "Explicitly instantiating voices", you will learn more about what the <<{...} \\ {...}>> feature does internally. The whole tuplet probably has to be included in the same Voice context (which also makes sense musically) so it's rather surprising
that your example works at all even when the c2 line is removed.

  /Mats

Quoting Magnus Lewis-Smith <[EMAIL PROTECTED]>:

\version "2.8.3"
\relative {
  \time 2/4

  c2 | %% 'XXX' - all is OK if this line is not present

  %% OK
  <<
    \times 2/3 { e8 e e e e e }
    \\
    \times 2/3 { c8 c c c c c }
  >> |

  %% BAD
  %% if 'XXX' exists, tuplet brackets disappear with compile errors:
  %% 'programming error: must have Item for spanner bound'
  \times 2/3 {
    <<
      { e8 e e e e e }
      \\
      { c8 c c c c c }
    >> |
  }
}




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






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

Reply via email to