]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rythms..ly
Fix makelsr.py and update LSR
[lilypond.git] / input / lsr / adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rythms..ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: rhythms, expressive-marks
4 \version "2.11.35"
5
6 \header { texidoc = "
7 LilyPond syntax can involve many unusual placements for parentheses,
8 brackets etc., which might sometimes have to be interleaved.For
9 example, when entering a manual beam, the left square bracket has to be
10 placed after the starting note and its duration, not before. Similarly,
11 the right square bracket should directly follow the note which is to be
12 at the end of the requested beaming, even if this note happens to be
13 inside a tuplet section. This snippet demonstrates how to superpose
14 manual beaming, manual slurs, ties, and phrasing slurs, while using
15 tuplet sections (enclosed with curly braces).
16 " }
17 % begin verbatim
18 {
19   r16[ g16 \times 2/3 {r16 e'8] }
20   
21  g16( a \times 2/3 {b d e') }
22  
23  g8[( a \times 2/3 {b d') e'~]}
24  
25  \times 4/5 {e'32\( a b d' e'} a'4.\)
26 }