%% 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-control.ly" \version "2.6.0" \header{ texidoc="@cindex Beam Position Control Beam positions may be controlled manually, by overriding the @code{positions} setting of the @code{Beam} grob. " } \score { \context Voice \relative c { %% from upper staffline (position 4) to centre (position 0) \override Beam #'positions = #'(2 . 0) c'8[ c] %% from center to one above centre (position 2) \override Beam #'positions = #'(0 . 1) c[ c] } \layout{raggedright = ##t} } % **************************************************************** % end ly snippet % ****************************************************************