lilypond-user
[Top][All Lists]
Advanced

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

Re: Hairpin confusion


From: Lukas-Fabian Moser
Subject: Re: Hairpin confusion
Date: Wed, 11 May 2022 08:38:58 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.1

Hi,

Use this override:

\version "2.22"

tune = \relative c'' {
  \override Hairpin.to-barline = ##f
  \clef treble
  r2 r4 f8 a\<~ | a1\! |
}
\score {
  <<
    \new Staff \tune
  >>
}

Looking at
https://lilypond.org/doc/v2.23/Documentation/notation/lilypond-index.html#lilypond-index_cp_letter-H
will redirect you to a snippet demonstrating that
("Setting hairpin behavior at bar lines").

Either this, or (in recent development versions):

\version "2.23.4"

tune = \relative c'' {
  \clef treble
  r2 r4 f8 a\<~ | \after 2.. \! a1 |
}
\score {
  <<
    \new Staff \tune
  >>
}

depending on what is meant exactly by wanting "the hairpin to terminate at the end of the whole note".

Lukas




reply via email to

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