lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: longer hshortairpins for the whole score


From: Stefan Thomas
Subject: Re: longer hshortairpins for the whole score
Date: Sat, 6 Sep 2008 16:59:20 +0200

Dear Kieren,
thanks for Your very nice snippet.
 \override Score.Hairpin #'minimum-length = #10
works very well, but
       \layout { \context { \Score \override Hairpin #'minimum-length = #10 } }
does not work in my score.
Maybee it has to do with the cirumstance, that I use "\new Score" at the begunning.
What is the differance between \score and \new Score

2008/9/6 Kieren MacMillan <address@hidden>
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 } }
}

%%%%%%%%%%%%%%%%%%%%%%%%



reply via email to

[Prev in Thread] Current Thread [Next in Thread]