Aha, I see now what I did wrong .. I used \set instead of \override ...
> On 25. Mar 2021, at 21:20, Valentin Petzel wrote:
>
> Okay, can you check if this works on your installation?
>
> Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
>> That’s what I thought too at first.
Yes, it works. Thank you very much Valentin, it is just what I needed. Best
regards
El jue, 25 mar 2021 a las 21:20, Valentin Petzel ()
escribió:
> Okay, can you check if this works on your installation?
>
> Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
> > That’s what I thou
Okay, can you check if this works on your installation?
Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
> That’s what I thought too at first. Doesn’t work in my Lilypond (2.20)
> installation though ...
> > On 25. Mar 2021, at 20:48, Valentin Petzel wrote:
> >
> > If you’re ta
That’s what I thought too at first. Doesn’t work in my Lilypond (2.20)
installation though ...
> On 25. Mar 2021, at 20:48, Valentin Petzel wrote:
>
> If you’re talking about regular markup in the Staff, you can simply put an
> \override TextScript.font-size = ...
> into the \with block of your
If you’re talking about regular markup in the Staff, you can simply put an
\override TextScript.font-size = ...
into the \with block of your Staff, or override it in the layout block for all
Staves.
Cheers, Valentin
signature.asc
Description: This is a digitally signed message part.
Hello,
Assuming you mean "all markups in a score" :
\layout {
\context {
\Score
\override RehearsalMark.font-size = #-2
}
}
Regards,
Frédéric
Le 25/03/2021 à 11:12, Pablo Cordal a écrit :
Hi everyone,
Is there any way to set the default size for all markups in a staff? I
have a
Ok, how about this: Place this instruction above your score:
\markup myStyle = \markup \fontsize #-2 \etc
And in the score, instead of writing
\markup{ ... }
use
\markup\myStyle{ ... }
Of course you can use another (shorter) Name instead of “ myStyle”.
And if you change the font size (or i
Hi Pablo,
I think, you can just place a
\set fontSize = #-1
in the layout block to get this for all markups.
Best,
Robert
> On 25. Mar 2021, at 08:12, Pablo Cordal wrote:
>
> Hi everyone,
>
> Is there any way to set the default size for all markups in a staff? I have a
> lot of markups
Hi everyone,
Is there any way to set the default size for all markups in a staff? I have
a lot of markups and I still have to write \fontsize = #-2 in all of
them... I found the default font family solution but I need to set the size
too.
Thank you very much. Best regards