Hi Stefan,
I found out (with the help of the manual), that with the following
tweak I can get longer hairpins.
\version "2.11.49"
\relative { \override Voice.Hairpin #'minimum-length = #10
\time 3/4 e 4 \p\< e \ff e }
But how can I change it for the whole score?
Is it possible to write it in the layout-block?
HTH!
Kieren.
%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.11.57"
\paper { ragged-right = ##t }
\markup { "Overriding at the Voice level is 'local':" }
\score
{
<<
\relative {
\time 3/4
e4 \p\< e\ff e
\override Voice.Hairpin #'minimum-length = #10
e4 \p\< e\ff e
}
\relative {
R4*3*2
e4 \p\< e\ff e
e4 \p\< e\ff e
}
>>
}
\markup { "Overriding at the Score level affects all Hairpins:" }
\score
{
<<
\relative {
\time 3/4
e4 \p\< e\ff e
\override Score.Hairpin #'minimum-length = #10
e4 \p\< e\ff e
}
\relative {
R4*3*2
e4 \p\< e\ff e
e4 \p\< e\ff e
}
>>
}
\markup { "This can also be done in the \layout block:" }
\score
{
<<
\relative {
\time 3/4
e4 \p\< e\ff e
e4 \p\< e\ff e
}
\relative {
R4*3*2
e4 \p\< e\ff e
e4 \p\< e\ff e
}
>>
\layout { \context { \Score \override Hairpin #'minimum-length =
#10 } }
}
%%%%%%%%%%%%%%%%%%%%%%%%
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user