lilypond-user
[Top][All Lists]
Advanced

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

Re: customize instrument tuning


From: Jacques Menu
Subject: Re: customize instrument tuning
Date: Sun, 20 Dec 2015 18:52:16 +0100

Hello BB,

You can write what follows, HTH.

JM


\version "2.19.33"

#(set-global-staff-size 30)

cMajor = { <c e g> }

myTuning = \stringTuning < e, as, c e as c'>

\score {
  <<
    \new Staff {
      \relative c'' {
        \cMajor
      }
    }

    \new FretBoards
    %\set Staff.stringTunings = #cuatroTuning
    \with { stringTunings =  \myTuning }
    {
      \cMajor
    }

    \new TabStaff \with { stringTunings = \myTuning }
    \relative c' {
      %\set TabStaff.stringTunings = #cuatroTuning
      \cMajor
    }
  >>

\layout {
    \context {
      \Score
    }
  }
}


Le 20 déc. 2015 à 16:38, BB <address@hidden> a écrit :

I did it this way: (not optimal, but works)
\version "2.19.20"

#(set-global-staff-size 30)

cMajor = { <c e g> }

\score {
<<
\new Staff {
\relative c'' {
\cMajor }
}
\new FretBoards
%\set Staff.stringTunings = #cuatroTuning
\with { stringTunings = \stringTuning < e, as, c e as c'> }
{\cMajor}
\new TabStaff \with { stringTunings = \stringTuning < e, as, c e as c'> }
\relative c' {
%\set TabStaff.stringTunings = #cuatroTuning
\cMajor }

>>
\layout {
\context {
\Score
}
}
}


On 20.12.2015 15:12, BB wrote:
M3Tuning = e as c e as c

_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user


reply via email to

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