%% 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 "hymn.ly" \version "2.6.0" \header { texidoc = " You can combine two parts on the same staff using the part combiner. For vocal scores (hymns), there is no need to add solo/a2 texts, so they should be switched off. " } \score{ \context Staff << \time 4/4 \partcombine \relative c'' { a4 c4.(g8) a4 | g4 e' g(f) | b, a c2 } \relative c'' { g4 e4.(d8) c4 | g'4 c, e(f) | d2 a } >> \layout{ linewidth=140.\mm \context { \Voice printPartCombineTexts = ##f } } } % **************************************************************** % end ly snippet % ****************************************************************