lilypond-user
[Top][All Lists]
Advanced

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

RE: implicit tuplets


From: MarcM
Subject: RE: implicit tuplets
Date: Fri, 5 Dec 2014 18:55:41 -0700 (MST)

thanks all for your answers. That put me in the right direction.Here are the
solutions that work:

\relative c'' {
   \time 2/4

  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/8)
  \set Timing.beatStructure = #'(1 1 1 1)

  % explicit triplets
  \tuplet 3/2 8 { c16 d e c d e c d e c d e } |

  % implicit triplets - version 1
  % omit the tuplet indicators after the first three notes) to
  % indicate that these are triplets but not to repeat the '3' all the time.
  {
    \tuplet 3/2 8 { c16 d e
      \omit TupletNumber
      \omit TupletBracket
        c d e c d e c d e }
  }
  % implicit triplets - version 2
  c16*2/3 d e c d e c d e c d e |

  % implicit triplets - version 3
  \scaleDurations 2/3 {
    c16 d e c d e c d e c d e |
  }
}




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/implicit-tuplets-tp169206p169236.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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