Am 09.03.2016 09:52, schrieb Blöchl Bernhard:
Obviously does changePitch.ly not understand the construct \tuplet 3/2
{ a8 a a }.

The use of patterns is completely wrong. Check the documentation how to use the construct correctly.
http://gillesth.free.fr/Lilypond/changePitch/changePitch-doc.pdf


You have to change the architecture of your program completely!

\version "2.16.2"
#(define cPCheckForTies #f)
\include "changePitch.ly"

rhythmPattern = {a16
                 %\tuplet 3/2 { a8 a a }
                 a16 a8 a4 a4} % a complex rhythm

scoreViolinI = \relative c'
{
 % \setOctave c' %this command is just an example and it does not exist!
  %\changePitch \rhythmPattern
  c d d d c b d e
  f g a b
  c d e f
  %\setOctave c'
  %\changePitch \rhythmPattern
  c d d d c b d e
}


\score
{
  <<
    \new Staff
    {
    \rhythmPattern
    \scoreViolinI
    }
  >>
  \layout { }
}

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

Reply via email to