How do I get it printed under the barline?


First of all, note that \mark is handled at the score level, so
you can only use it to print things above or below the full system,
not above/below each stave. So, if you want to printed below the
system, just set the 'direction' property:
\override Score.RehearsalMard #'direction = #DOWN


Could this be used to generate a new command \markbelow, that works as \mark, except that it puts the stuff below?

You can define your own functions, see
http://lilypond.org/doc/v2.6/Documentation/user/out-www/lilypond/Using-LilyPond-syntax-inside-Scheme.html
and other sections of that chapter.

One epossible implementation is the following:

markbelow = #(def-music-function (parser location text) (markup?)
#{\once \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
\once \override Score.RehearsalMark #'direction = #DOWN
       \mark  #$text #}
)

\score{
\relative c'{ c1 \markbelow \markup "below" \bar "|."}
\layout{raggedright=##t}
}

  /Mats


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

Reply via email to