lilypond-user
[Top][All Lists]
Advanced

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

Re: Changing Tuning


From: Omer Katzir
Subject: Re: Changing Tuning
Date: Tue, 17 Jun 2014 17:15:29 +0300

Thank, That’s what I needed
so many options!

On Jun 17, 2014, at 4:41 PM, Pierre Perol-Schneider <address@hidden> wrote:

> 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
>  
> <lute.jpg>




reply via email to

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