]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-manual-beaming.ly
* lily/book.cc (LY_DEFINE): new function. ly:make-book. Supercedes
[lilypond.git] / input / regression / beam-manual-beaming.ly
index 5903482718563c3300245589275f25b842b1826c..4ddc0ce48ccdf4240d7c97874edfa31995d2cad6 100644 (file)
@@ -1,28 +1,28 @@
-#(ly:set-option 'old-relative)
-\version "1.9.1"
+
+\version "2.3.4"
 
 
 \header {
-texidoc =  
-"Beaming can be overidden for individual stems."
+    texidoc = 
+    "Beaming can be overidden for individual stems."
 }
 \score {
-\notes \relative c'' {
-  c32[ c
-
+     \relative c'' {
+       c32[ c
 
-%% WARNING: #'beaming is written, so this
-%% property can not be shared between objects. Always use
-%%  \once.
-%%
+            %% WARNING: #'beaming is written, so this
+            %% property can not be shared between objects. Always use
+            %%  \once.
+            %%
 
-
-  \once \property Voice.Stem \override
-   #'beaming = #(cons (list   1 2) (list 0 2 4))
-c
-  \once \property Voice.Stem \override
-   #'beaming = #(cons (list 0 2 4) (list 0 1 4))
-c c c]
-}
-\paper{ linewidth = -1.0 }
+            \once \override Stem 
+            #'beaming = #(cons (list   1 2) (list 0 2 4))
+            c
+            \once \override Stem 
+            #'beaming = #(cons (list 0 2 4) (list 0 1 4))
+            c c c]
+    }
+    \paper{ 
+       raggedright = ##t 
+    }
 }