lilypond-user
[Top][All Lists]
Advanced

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

Re: Change clef too close to the chord after it


From: Jean Abou Samra
Subject: Re: Change clef too close to the chord after it
Date: Tue, 8 Nov 2022 23:42:34 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.1

Le 08/11/2022 à 16:30, Knute Snortum a écrit :
On Tue, Nov 8, 2022 at 5:30 AM Paolo Cantamessa
<paolocantamessa72@gmail.com>  wrote:
Hi Knute,
this in my environment works:
rightHand = { \repeat unfold 16 { c'16 } }

leftHand = \relative {
   % Remove the markup and all is well
   \clef bass g,8\noBeam^\markup \large \italic "leggierissimo"
     \once \override Staff.Clef.extra-offset = #'(-1 . 0)
     \clef treble <b' f' a>8 q2.
}

\paper {
   ragged-right = ##f
}

<<
   \new Staff \rightHand
   \new Staff \leftHand
That works great, thanks!



extra-offset is only a last resort though, for all the reasons listed at
https://lilypond.org/doc/v2.22/Documentation/learning/moving-objects.html

Instead, how about:

\version "2.23.80"

rightHand = { \repeat unfold 16 { c'16 } }

leftHand = \relative {
  \clef bass g,8\noBeam^\markup \large \italic "leggierissimo"
  \once \override Staff.Clef.extra-spacing-width = #'(0 . 1.5)
  \clef treble <b' f' a>8 q2.
}

\paper {
  ragged-right = ##f
}

<<
  \new Staff \rightHand
  \new Staff \leftHand
>>

See https://lilypond.org/doc/v2.23/Documentation/notation/spacing-between-adjacent-columns.html

Best,
Jean

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

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