lilypond-user
[Top][All Lists]
Advanced

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

Re: How to make a p<f crescendo from 'two voices' to 'one voice'?


From: Thomas Morley
Subject: Re: How to make a p<f crescendo from 'two voices' to 'one voice'?
Date: Wed, 17 Aug 2016 16:28:12 +0200

2016-08-17 15:27 GMT+02:00 Philip Bergwerf <address@hidden>:
> \version "2.18.2"
>
> \relative c''{
>  <<{
>    c^\p^\<
>  }\\{
>    c,
>  }>>
>  c' c c c
>  c c c^\f
>  \bar "|."
> }
>
> %I want to make a p<f crescendo from the first upper c to the last c.
> %The crescendo starts from a 'two voices' measure and ens in a 'one voice'
> %measure. How to make a crescendo sign in this case?

Hi Philip,

two possibilities:

\version "2.18.2"

%% apply separate Voice
\new Staff
  <<
    \relative c'' {
      <<
        { c4 }
        \\
        { c, }
      >>
      c' c c
      c c c c
      \bar "|."
    }
    {
      s4^\p^\<
      s2.
      s
      s4^\f^\!
    }
  >>

%% continue Voice
\new Voice = "v"
 \relative c'' {
  <<
      \context Voice = "v" {
        \voiceOne
      c^\p^\<
    }
    \\
    { c, }
  >>
  c' c c
  c c c c^\f
  \bar "|."
 }

HTH,
  Harm



reply via email to

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