lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: music patterns and octave


From: Blöchl Bernhard
Subject: Re: music patterns and octave
Date: Wed, 09 Mar 2016 10:12:25 +0100
User-agent: Roundcube Webmail/0.9.5

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 { }
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]