lilypond-user
[Top][All Lists]
Advanced

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

Re: How to use clef "moderntab"


From: Nick Payne
Subject: Re: How to use clef "moderntab"
Date: Tue, 07 Aug 2012 11:26:25 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0

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
    }
>>

reply via email to

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