lilypond-user
[Top][All Lists]
Advanced

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

Re: Changing Tuning


From: Pierre Perol-Schneider
Subject: Re: Changing Tuning
Date: Tue, 17 Jun 2014 15:41:54 +0200

Hi Federico, Hi Omer,

I'd suggest to change Federico's code into a more lute like formulation :

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.18.2"

global = {

   \time 3/4

   \cadenzaOn

   \omit Stem

}


high = {

   \global

   s1 g,4 c f a d' g'

   \cadenzaOff

   \undo\omit Stem

   \bar "|"

   % mes.1

     f'8 e' d' c' b a

   % fin.

   \bar "|."

}


medium = {

   \global

   s1 g,4 c f a d' g'

}


low = {

   \global

   c,4 d, e, f,

}


\score {

   \new StaffGroup <<

     \new TabStaff = "High"

     \with {

       stringTunings = \stringTuning <g, c f a d' g'>

       \override VerticalAxisGroup.staff-staff-spacing = #'((padding . 1))

       \override TimeSignature.style = #'single-digit

       \revert TimeSignature.stencil

     }

     { << \high \\ \medium >> }

     \new TabStaff = "Low"

     \with {

       \omit Clef

       \override StaffSymbol.stencil = ##f

       stringTunings = \stringTuning <c,>

       fretLabels = \markuplist {

         "///a" \null

         "//a" \null

         "/a"

         \column { \vspace #.15 "a" }

       }

     }

     { \low }

     \new Staff {

       \clef "treble_8"

       << \high \\ \medium \\ \low >>

     }

   >>

   \layout {

     \context {

       \TabStaff

       tablatureFormat = #fret-letter-tablature-format

     }

   }

}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


HTH,

Pierre

 

Attachment: lute.jpg
Description: JPEG image


reply via email to

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