Peter Crighton <petecrigh...@gmail.com> writes:

> Hello all,
>
> I came upon some unexpected behaviour when using a tag on, for example, a
> markup that is attached to a chord repetition symbol (see below).
> How can I fix this, so only the markup and not also the chord repetition
> symbol gets tagged?
>
>
> \version "2.19.47"
>
> x = \tag #'tabstaff ^x
>
> music = \relative c {
>   c4 c c c\x
>   <c e> <c e> <c e> <c e>\x
>   q q q q\x
> }
>
> \new StaffGroup <<
>   \new Staff \keepWithTag #'staff <<
>     \clef "treble_8"
>     \music
>   >>
>   \new TabStaff \keepWithTag #'tabstaff <<
>     \tabFullNotation
>     \music
>   >>
>>>

Huh, this is a bug.  It comes about because \keepWithTag removes music
that ends up without either an 'elements or 'element field.  But a
repeat chord (before it is expanded) does not contain elements by
default apart from its articulations.

I'm not sure what the best fix is.  Stop the recursive removal
altogether with respect to 'elements?  As opposed to the
single-expression 'element field, setting 'elements to '() usually keeps
stuff in working condition.

-- 
David Kastrup

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

Reply via email to