lilypond-user
[Top][All Lists]
Advanced

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

Re: warning: crescendo too small


From: David Bobroff
Subject: Re: warning: crescendo too small
Date: Fri, 03 Jun 2011 10:20:05 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10

On 6/3/2011 10:05 AM, David Santamauro wrote:
Hi,

When magnified 500%, the crescendo looks like a '|' ... the snippet:

\version "2.12.3"

\include "english.ly"
\score {
  <<
    \relative g' {
      \clef "treble"
      \key c \major
      \time 4/4
      r2 r4 d'^\markup { \tiny "Solo" }_\mp\<(
      g2\! fs4 e4)
    }
  >>
  \layout {}
}

I've attached what I'm trying to achieve.

Thanks

David
_______________________________________________ lilypond-user mailing list address@hidden https://lists.gnu.org/mailman/listinfo/lilypond-user

A couple possibilities:

\version "2.12.3"

\include "english.ly"
\score {
  <<
    \relative g' {
      \clef "treble"
      \key c \major
      \time 4/4
      %% move \mp and \< to r4
      r2 r4_\mp\< d'^\markup { \tiny "Solo" }(
      g2\! fs4 e4)
      %% \scaleDurations to "stretch" the quarter note
      r2 r4 \scaleDurations #'(1 . 4) { d'^\markup { \tiny "Solo" }_\mp\<( s4. s4. s4-\! }
      g2\! fs4 e4)
    }
  >>
  \layout {}
}

Hope this helps.

-David

reply via email to

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