On Tue, 8 Oct 2024 17:29:00 -0700
Knute Snortum wrote:
> On Tue, Oct 8, 2024 at 9:38 AM Cameron Hall <[email protected]>
> wrote:
>
> > I'm trying to add dynamics to a part that splits into two, then goes
> > back into a unison section. The problem is that the crescendo
> > starts in the divisi section and ends in the unison section. I've
> > tried this, but it doesn't allow me to terminate the crescendo. I
> > want the crescendo to start in measure two and end with the forte
> > in measure 7.
>
> How about putting the Dynamics context outside of the Staff?
>
> %%%
> \version "2.24.4"
>
> <<
> \new Staff {
> \clef bass
> \time 3/4
> <>^"div."
> <<
> { \repeat unfold 4 { r4 e e | } }
> \\
> { \repeat unfold 2 { c2. | g,2. | } }
> >>
> e4^"unis." f g |
> f e d |
> c2. |
> }
> \new Dynamics { s2.\p | s2.*5\< | s2.\f }
> >>
> %%%
>
>
> --
> Knute Snortum
Thanks. I just discovered the "\after" command and found an even easier
way to do this!
%%%
\version "2.24.4"
{
\clef bass
\time 3/4
<>\p^"div."
\after 2. \<
<<
{ \repeat unfold 4 { r4 e e | } }
\\
{ \repeat unfold 2 { c2. | g,2. | } }
>>
e4^"unis." f g |
f e d |
c2.\f |
}
%%%