Am 14.11.2016 um 09:52 schrieb Mojca Miklavec:
I'm using \markDefault from the following code for marking parts of music:

stdMarkFormat = {
  \set Score.markFormatter = #format-mark-box-letters
}
markDefault = {
  \stdMarkFormat
  \mark \default
}

Why do you use these functions? A \set is effective until the end of the score unless it is preceded by \once.

So you don’t have to set the markFormatter every time you use \mark #8 or \mark \default and there is no need for extra functions like \markDefault:

\relative {
  \set Score.markFormatter = #format-mark-box-letters
  c'4 d e f \mark \default
  g a b c \mark #8
  b a g f \mark \default
  e d c2
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to