Is it possible that these constructs might one day be possible?
I ran into some syncopated music today which would have been
convenient to store in a variable, but it was difficult to find a
viable "break point" because of frequent tied notes.

Thanks!


motifA = \relative c' {  f1 ~ }

\score {
  \new Staff {
    \relative c' {
      \motifA f1
      \motifA f4 g a c
    }
  }
}


or:

motifB = \relative c' {  f1  }

\score {
  \new Staff {
    \relative c' {
      \motifB ~ f1
      \motifB ~ f4 g a c
    }
  }
}


or even:

motifB = \relative c' {  f1  }
motifC = \relative c' {  f1  }

\score {
  \new Staff {
    \relative c' {
      \motifB ~ \motifC
    }
  }
}

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

Reply via email to