Hi Jakob,

2014-09-13 21:31 GMT+02:00 Jakob Schöttl <[email protected]>:


> But how can I display one of this tabulature symbols instead in a normal
> staff:
>
> \version "2.19.7"
> \new TabStaff { \clef tab s \clef moderntab }
>

Try :

\version "2.19.7"

\score {
  {
    a'
  }
  \layout {
    \context {
      \Staff
      \override Clef.stencil = #(lambda (grob)
         (grob-interpret-markup grob
           #{
              \markup
              \raise #1.7
              \override #'(baseline-skip . 1.3)
              \override #'(font-size . -3)
              \center-column\bold\sans { T A B }
           #}))
      \override Clef.space-alist.time-signature = #'(minimum-space . 2.5)
    }
  }
}

HTH,
Pierre
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to