]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/flat-flags-and-beam-nibs.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / Documentation / snippets / flat-flags-and-beam-nibs.ly
index 9657cfe775b0845a1eae4f61a86475282d3df652..96a6bcc153de26b30a0e29441ae687847c003706 100644 (file)
@@ -1,10 +1,11 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
-\version "2.16.0"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.19.0
+\version "2.19.0"
 
 \header {
   lsrtags = "contemporary-notation, rhythms"
@@ -47,7 +48,7 @@ carry both a left- and right-pointing flat flag. Do this with paired
 (Note that @code{\\set stemLeftBeamCount} is always equivalent to
 @code{\\once \\set}.  In other words, the beam count settings are not
 @qq{sticky}, so the pair of flat flags attached to the lone
-@code{c'16[]} in the last example have nothing to do with the
+@code{16[]} in the last example have nothing to do with the
 @code{\\set} two notes prior.)
 
 
@@ -69,25 +70,25 @@ carry both a left- and right-pointing flat flag. Do this with paired
     \new RhythmicStaff {
       r8.
       \set stemRightBeamCount = #0
-      c16[]
+      16[]
     }
     % Example 3
     \new RhythmicStaff {
-      c16 c
+      16 16
       \set stemRightBeamCount = #2
-      c16 r r
+      16 r r
       \set stemLeftBeamCount = #2
-      c16 c c
+      16 16 16
     }
     % Example 4
     \new RhythmicStaff {
-      c16 c
+      16 16
       \set stemRightBeamCount = #2
-      c16 r
-      c16[]
+      16 r16
+      16[]
       r16
       \set stemLeftBeamCount = #2
-      c16 c
+      16 16
     }
   >>
 }