\version "2.14.0"

    \header
    { title =" Doigtés et macros"
    subtitle =" "
    subsubtitle  = ""
    instrument =\markup {"Clarinette en si" \flat}
    composer ="Daniel avec l'aide de Dickie"
    }

    \paper  {

    #(set-default-paper-size "a4")
    after-title-space = #(* mm 15)
    between-title-space = #(* mm 15)
    print-page-number= ##t
    left-margin = #(* mm 15)
    line-width  = #(* mm 172)

    }


    \include "italiano.ly"
    
    %{********************************
      *                              *
      *     LISTE DES MACROS         *
      *                              *
      *     NOTES CHALUMEAU          *
      *                              *
      ********************************
      %}
    CmiChg= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five six))
                           (lh . (thumb e))
                           (rh . (f)))}
    CfaCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five six))
                           (lh . (thumb))
                           (rh . (f)))}
    CfadCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five six))
                           (lh . (thumb fis))
                           (rh . (f)))}
    CsolCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five six))
                           (lh . (thumb))
                           (rh . ()))}
    CsoldCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five six))
                           (lh . (thumb))
                           (rh . (gis)))}
    ClaCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four five))
                           (lh . (thumb))
                           (rh . ()))}
    CsibCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four))
                           (lh . (thumb))
                           (rh . ()))}
    CsiCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three four ))
                           (lh . (thumb))
                           (rh . (b)))}
    CdoCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three))
                           (lh . (thumb))
                           (rh . ()))}
    CdodCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two three))
                           (lh . (thumb cis))
                           (rh . ()))}    
    CreCh= \markup {
      \woodwind-diagram #'clarinet
                        #'((cc . (one two))
                           (lh . (thumb))
                           (rh . ()))}

    clarinette = {
    \clef treble
    \key do \major
    
   
    \relative do {
    mi1 ^\CmiChg

    r

    fa  ^\Cfach

    r

    fad ^\CfadCh


    r
    sol  ^\CsolCh

    r
    sold ^\CsoldCh
    r
    la^\ClaCh
    r
    sib ^\CsibCh
    r
    si ^\CsiCh
    r
    do ^\CdoCh
    r
    dod ^\CdodCh
    r
    re ^\CreCh
    r
    }}


    \score {
    <<    \new Voice {\clarinette}
        >>
    }