lilypond-user
[Top][All Lists]
Advanced

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

Re: Hairpin confusion


From: Jean Abou Samra
Subject: Re: Hairpin confusion
Date: Wed, 11 May 2022 08:22:08 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.1



Le 11/05/2022 à 03:52, Mark Probert a écrit :
Hi.

I'm wanting the hairpin to terminate at the end of the whole note, yet
this is not what is happening (it only appears under the 8th note).
What is the correct way to make go the full duration?

TIA

  .. mark.

---
\version "2.22"

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


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").

Best,
Jean





reply via email to

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