]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/partcombine-and-autobeamoff.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / partcombine-and-autobeamoff.ly
index acd42708a79cd91f99e59a8000105b09ecec8943..d88102bbe0ce9ac192f0a8a4f0059e1ec01e73e6 100644 (file)
@@ -1,57 +1,63 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.31
-\version "2.13.31"
+%% 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.14.2"
 
 \header {
   lsrtags = "rhythms"
 
   texidoc = "
-The function of @code{@bs{}autoBeamOff} when used with
-@code{@bs{}partcombine} can be difficult to understand.  It may
-be preferable to use
+The function of @code{\\autoBeamOff} when used with
+@code{\\partcombine} can be difficult to understand.
+
+It may be preferable to use
+
+
+@code{\\set Staff.autoBeaming = ##f}
 
-@example
-\set Staff.autobeaming = ##f
-@end example
 
-@noindent
 instead, to ensure that autobeaming will be turned off for the entire
 staff.
 
-@code{\partcombine} apparently works with 3 voices -- stem up single,
+
+@code{\\partcombine} apparently works with 3 voices -- stem up single,
 stem down single, stem up combined.
 
-An @code{\autoBeamOff} call in the first argument to partcombine will
+
+An @code{\\autoBeamOff} call in the first argument to partcombine will
 apply to the voice that is active at the time the call is processed,
-either stem up single or stem up combined.
-An @code{\autoBeamOff} call in the second argument will apply to the
-voice that is stem down single.
+either stem up single or stem up combined. An @code{\\autoBeamOff} call
+in the second argument will apply to the voice that is stem down single.
+
+
+In order to use @code{\\autoBeamOff} to stop all autobeaming when used
+with @code{\\partcombine}, it will be necessary to use three calls to
+@code{\\autoBeamOff}.
+
+
 
-In order to use @code{\autoBeamOff} to stop all autobeaming when used
-with @code{\partcombine},
-it will be necessary to use @emph{three} calls to @code{\autoBeamOff}.
 
 "
-doctitle = "Partcombine and autoBeamOff"
+  doctitle = "Partcombine and autoBeamOff"
 } % begin verbatim
 
 
 {
   %\set Staff.autoBeaming = ##f % turns off all autobeaming
   \partcombine
-      {
-        \autoBeamOff % applies to split up stems
-        \repeat unfold 4 a'16
-        %\autoBeamOff % applies to combined up stems
-        \repeat unfold 4 a'8
-        \repeat unfold 4 a'16
-      }
-      {
-        \autoBeamOff % applies to down stems
-        \repeat unfold 4 f'8
-        \repeat unfold 8 f'16 |
-      }
+  {
+    \autoBeamOff % applies to split up stems
+    \repeat unfold 4 a'16
+    %\autoBeamOff % applies to combined up stems
+    \repeat unfold 4 a'8
+    \repeat unfold 4 a'16
+  }
+  {
+    \autoBeamOff % applies to down stems
+    \repeat unfold 4 f'8
+    \repeat unfold 8 f'16 |
+  }
 }
-