lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

how to display Arpeggio in TabStaff in 2.17?


From: Federico Bruni
Subject: how to display Arpeggio in TabStaff in 2.17?
Date: Sat, 08 Dec 2012 10:17:49 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.10) Gecko/20121028 Icedove/10.0.10

I used to display the Arpeggio in TabStaff this way:
\revert Arpeggio #'stencil

I know that David made a big change in the code and the synthax is changed, but I can't make it work.

\revert Arpeggio.stencil

doesn't work.
What's wrong?

See snippet below.
Thanks,
Federico


%\version "2.16.1"
\version "2.17.9"

music =  \relative c {
  <c e g c>4\arpeggio
}

\score {
  \new StaffGroup <<
    \new Staff <<
      \context Voice { \clef "G_8" \music }
    >>
    \new TabStaff  <<
      \context TabVoice { \clef "moderntab" \music }
    >>
  >>
  \layout {
    \context {
      % Display arpeggio in TabStaff
      \TabStaff
      % old command for 2.16:
      % \revert Arpeggio #'stencil

      % TODO: different command for 2.17 needed!
      \revert Arpeggio.stencil
    }
  }
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]