Maybe another solution could be to reduce the clef size, e.g.:
\version "2.20.0"
\paper {
line-width = 50
}
\layout {
indent = 0
system-count = 1
}
<<
\new Staff { R2.*3 c''8 8 8 8 8 8 8 8 8 8 8 8 }
\new Staff { R2. c''4 r r c'' r r r e'' r r d'' r }
\new Staff {
\clef F \time 3/
Le lun. 1 juin 2020 à 08:10, Josiah Boothby a écrit :
> Well, now at least I know of a way to move it around, but I have no
> idea what the pair of numbers for x-extent mean (and #'(-5 . 5) puts
> the clef in an even stranger place).
...
Maybe playing with other settings wil help for a better p
Basically, X-extent will define the X space dimension used by the clef.
1 is the height between two lines in a staff.
Here, #'(-5 . 5) stays for 5 spaces on the left side of the clef and 5
spaces on the right side.
Too much, of course; you'll have to find the right figures according to
your score.
Well, now at least I know of a way to move it around, but I have no
idea what the pair of numbers for x-extent mean (and #'(-5 . 5) puts
the clef in an even stranger place). Looking through the documentation
only tells me that X-extent takes two numbers, but doesn't actually
inform me of what those
Hi Josiah,
Maybe try:
\version "2.20.0"
{
\clef F \time 3/4
R2.*3
\clef G
g4 r r g r r
\once\override Staff.Clef.X-extent = #'(-5 . 5)
\clef F
}
and properly set the extent.
HTH.
Cheers,
Pierre
Le lun. 1 juin 2020 à 07:32, Josiah Boothby a écrit :
> I'm struggling to increase the
I'm struggling to increase the padding for a cautionary clef in a
slightly crowded line, since it's colliding with rests when there are
notes on other lines. Attached is an image of the score I'm working
with as I'm struggling to come up with a concise test snippet that
doesn't have other problems.