On 07/08/12 09:03, Ben Eichler wrote:
/\new StaffGroup <</
/    \new Staff \symbols {/
/    \clef "bass_8"/
/    }/
/    \new TabStaff \symbols {/
/    \clef moderntab/
/    \set TabStaff.stringTunings = #bass-tuning/
/    }/
/>>/

Move \symbols after the clef declaration:

\version "2.15.42"

symbols = { <a, e a>1 }

\new StaffGroup <<
    \new Staff {
        \clef "bass_8"
        \symbols
    }
    \new TabStaff {
        \clef moderntab
        \set TabStaff.stringTunings = #bass-tuning
        \symbols
    }
>>
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to