%% 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-auto-4-8.ly" %% \version "2.6.0" %% keep for now, although merging into beam-auto-override is a possibility. \header { texidoc = "@cindex Auto Beaming 4/8 You can override the automatic beaming settings. " } \layout{raggedright = ##t} \relative c''{ \time 4/8 %{ the default for 4/8 (see scm/auto-beam.scm) ---- -------- | | | |--| x| x| x| x| x| %} c8 c c c16 c %{ user override -------------- | | | |--| x| x| x| x| x| %} %% This has now (2.5.21) changed, (end * * * *) no longer %% masks the default config entry ('(end * * 4 8) 1 4)) %% rather than masking by override: %% #(override-auto-beam-setting '(end * * * *) 2 4) %% revert the config file setting. #(revert-auto-beam-setting '(end * * 4 8) 1 4) c8 c c c16 c } % **************************************************************** % end ly snippet % ****************************************************************