Hi Martín,

Am 16.09.20 um 20:09 schrieb Martín Rincón Botero:
how can I make a markup that ignores a \magnifyStaff command? Consider:

oboe = \relative c' { c4^"markup" d e f }
oboePart = \new Staff \with {
  \magnifyStaff #5/7
} \oboe
piano = \relative c' { c4 d e f }\score {
  <<
    \oboePart
    \piano
  >>
  \layout { }
}

I know I can just make a bigger markup for the magnified staff, but that wouldn't be a practical solution in my case, since said markups are gonna be in their independent variable (tempi) to be used by both staves.

There is \abs-fontsize, for example:

\version "2.21.6"

oboe = \relative c' { c4^\markup { \abs-fontsize #12 "markup" } d e f }
oboePart = \new Staff \with {
  \magnifyStaff #5/7
} \oboe
piano = \relative c' { c4^\markup { \abs-fontsize #12 "markup" } d e f }\score {
  <<
    \oboePart
    \piano
  >>
  \layout { }
}

Best
Lukas

Reply via email to