%% 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 "compound-time.ly" \version "2.5.20" \header { texidoc = "@cindex compound time @cindex plus Compound time signatures can be printed. Automatic beaming works in compound time. " } \layout{raggedright = ##t} #(define (compound-time grob one two num) (interpret-markup (ly:grob-layout grob) '(((baseline-skip . 2) (word-space . 2) (font-family . number))) (markup #:line ( #:column (one num) #:lower 1 "+" #:column (two num))))) \relative { %% compound time signature hack \time 5/8 \override Staff.TimeSignature #'print-function = #(lambda (grob) (compound-time grob "2" "3" "8")) #(override-auto-beam-setting '(end 1 8 5 8) 1 4) c8 c c8 c c } % **************************************************************** % end ly snippet % ****************************************************************