Am 06.11.2012 23:33, schrieb Thomas Morley:
More automated:
\version "2.16.0"
chordNamesWithRestsLayout =
\with {
noChordSymbol = #(make-simple-markup "")
\consists "Rest_engraver"
\consists "Multi_measure_rest_engraver"
\override Rest #'font-size = #-4
\override MultiMeasureRest #'font-size = #-4
% No idea, why r1 needs to be special-cased:
\override Rest #'after-line-breaking =
#(lambda (grob)
(let* ((dur-log (ly:grob-property grob 'duration-log))
(staff-pos (if (= dur-log 0) 0 2)))
(ly:grob-set-property! grob 'staff-position staff-pos)))
\override MultiMeasureRest #'staff-position = #2
}
<<
\new ChordNames \with { \chordNamesWithRestsLayout }
\chordmode { c1 R1 d e }
\new Staff { c1 R1 d e }
>>
\score {
<<
\new ChordNames
\chordmode { c1 R1 d e }
\new Staff { c1 R1 d e }
>>
\layout {
\context {
\ChordNames
\chordNamesWithRestsLayout
}
}
}
thanks Harm - I think that's a superb solution with a fantastical short
code - something for the LSR!?
'/if you want to replace the "N.C." symbol in a \chordname context by
the latent rest you can use … … … …/ '
Eluze
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user