On 11/9/05, Jannik Jeppesen <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> Is it possible to create this:
>
> three 16. note triplets
>
> \time 2/3 { hh hh hh}16
> \time 2/3 { hh hh hh}16
> \time 2/3 { hh hh hh}16
>
> How do i triple these? So they will be within 2/4???
>
> \time 2/3 {
>   \time 2/3 { hh hh hh}16
>   \time 2/3 { hh hh hh}16
>   \time 2/3 { hh hh hh}16
> }
>
> This was my only idea.
> Is there a solution to my problem?

Try:

\times 2/3 {
   \times 2/3 {
      c'16
      c'16
      c'16
   }
   \times 2/3 {
      c'16
      c'16
      c'16
   }
   \times 2/3 {
      c'16
      c'16
      c'16
   }
}

Which take the space of one measure in 2/8. Maybe for 2/4 you would prefer:

\times 2/3 {
   \times 2/3 {
      c'8
      c'8
      c'8
   }
   \times 2/3 {
      c'8
      c'8
      c'8
   }
   \times 2/3 {
      c'8
      c'8
      c'8
   }
}

Note that, with an s,

   \times q/p {  }

gives you prolation but that, without an s,

   \time m/n

gives you a time signature.




--
Trevor Bača
[EMAIL PROTECTED]
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to