Hi Mark,

2014-09-09 9:10 GMT+02:00 Mark Stephen Mrotek <carsonm...@ca.rr.com>:


> Hope this helps finding my error.
>

As already mentioned here :
http://lilypond.1069038.n5.nabble.com/increased-space-between-piano-staves-td166190.html
problem comes from the tuplet brackets.

Putting \tweak positions #'() before tuplet mes.5 will solve this issue.

Cheers,

Pierre
\version "2.18.0"

\header {
  title = "Sonata 479"
  composer = "D. Scarlatti"
  opus = "K. 6"
}


\score {
  \new PianoStaff <<
    \new Staff = "upper"
    \relative c'' {
      \clef treble
      \key f \major
      \time 3/8
      \override TupletBracket #'bracket-visibility = ##f
      \override TupletNumber #'stencil = ##f
      
      f,8 a c | f c' a |
      \stemUp
      f8 f f |
      f4\trill f8 |
      \slurUp
      \tweak positions #'()
      \times 2/3 {
                  a16 ( [ g f ] ) e ( [ d c ] ) 
                  \stemUp
                  \slurUp
                  bes ( [ a g ] ) |
                  a ( [ g f ] ) e ( [ d c ] )
                  \change Staff = "lower"
                  bes ( [ a g ] ) } |
      \times 2/3 { a16 ( [ g f ] ) e ( d c ) bes ( [ a g ] ) } |
      f4.\trill
      \change Staff = "upper"
      \times 2/3 { a''16 bes c } ees4\trill
      
      %10
      
      \times 2/3 { d16 c bes } bes4\trill |
      \times 2/3 { bes16 c d } f8. [ ees32 d ] |
      \times 2/3 { c16 bes a } a4\trill 
      \times 2/3 { a16 [ bes c ] } f8 \times 2/3 { b,16 [ c d ] } |
      g8 \times 2/3 { c,16 [ d e ] } a8 |

      
    }
    
 \new Staff = "lower"
    \relative c {
      \clef bass
      \key f \major
      \time 3/8
      \override TupletBracket #'bracket-visibility = ##f
      \override TupletNumber #'stencil = ##f
      
      f,8 a c | f a c |
      \change Staff = "upper"
      \stemDown
      f8 a c | a4_\trill a8
      f8 f f |
      \change Staff = "lower"
      f, f f |
      \stemDown
      f, f f | s4. | 
      < f' c' >8 q q |
      
      %10
      
      < f bes d > q q | q q q |
      < f c' f > q q | 
      \change Staff = "upper"
      f'8 \times 2/3 { d16 [ e f ] } g8 |
      \times 2/3 { e16 [ f g ] } a8 \times 2/3 { f16 [ g a ] } |




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

Reply via email to