%% Generated by lilypond-book.py %% Options: [linewidth=160\mm,alt=[image of music],printfilename,indent=0\mm,texidoc] #(set! toplevel-score-handler ly:parser-print-score) #(set! toplevel-music-handler (lambda (p m) (ly:parser-print-score p (ly:music-scorify m p)))) #(ly:set-option (quote no-point-and-click)) #(define version-seen? #t) % **************************************************************** % Start cut-&-pastable-section % **************************************************************** \paper { #(define dump-extents #t) linewidth = 160\mm indent = 0\mm } \layout { } % **************************************************************** % ly snippet: % **************************************************************** \renameinput "beam-count.ly" %%\version "2.6.0" \header{ texidoc="@cindex Beam Count You can alter the number of stems in a beam. In this example, two sets of four 32nds are joined, as if they were 8th notes. " } \layout { raggedright = ##t} \relative { %% This has now (2.5.21) changed, (end * * * *) no longer %% masks the default config entry ('(end * * 2 4) 1 4)) %% rather than masking by override: %% #(override-auto-beam-setting '(end * * * *) 1 4) %% revert the config file settings. #(revert-auto-beam-setting '(end 1 32 4 4) 1 8) #(revert-auto-beam-setting '(end 1 32 4 4) 3 8) f32 g a b b a g f f32 g a \set stemRightBeamCount = #1 b \set stemLeftBeamCount = #1 b a g f } % **************************************************************** % end ly snippet % ****************************************************************