Re: Default markup text fontsize

2021-03-25 Thread Robert Schmaus
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.

Re: Default markup text fontsize

2021-03-25 Thread Pablo Cordal
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

Re: Default markup text fontsize

2021-03-25 Thread Valentin Petzel
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

Re: Default markup text fontsize

2021-03-25 Thread 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 talking about regular markup in the Staff, you can simply put an > \override TextScript.font-size = ... > into the \with block of your

Re: Default markup text fontsize

2021-03-25 Thread Valentin Petzel
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.

Re: Default markup text fontsize

2021-03-25 Thread fremoin
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

Re: Default markup text fontsize

2021-03-25 Thread Robert Schmaus
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

Re: Default markup text fontsize

2021-03-25 Thread Robert Schmaus
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

Default markup text fontsize

2021-03-25 Thread Pablo Cordal
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