Sonate K. 250

Un article de Wikipédia, l'encyclopédie libre.
Ceci est une version archivée de cette page, en date du 29 décembre 2020 à 15:08 et modifiée en dernier par CodexBot (discuter | contributions). Elle peut contenir des erreurs, des inexactitudes ou des contenus vandalisés non présents dans la version actuelle.
Sonate K. 250
ut majeur
, Allegro, 82 mes.
K.249K.250 → K.251
L.173L.174 → L.175
P.460P.461 → P.462
F.197F.198 → F.199
IV 14 ← Venise IV 15 → IV 16
VI 4 ← Parme VI 5 → VI 6

La sonate K. 250 (F.198/L.174) en ut majeur est une œuvre pour clavier du compositeur italien Domenico Scarlatti.

Présentation

La sonate en ut majeur K. 250 est notée Allegro. La facture de la sonate semble la déterminer à un instrument à un seul clavier[1].



\version "2.18.2"
\header {
  tagline = ##f
  % composer = "Domenico Scarlatti"
  % opus = "K. 250"
  % meter = "Allegro"
}

%% les petites notes
trillBqpUp     = { \tag #'print { b'8.\prall } \tag #'midi { \times 2/3 { c32 b c } b8 } }
trillCqp       = { \tag #'print { c8.\prall } \tag #'midi { \times 2/3 { d32 c d } c8 } }
trillCqpDown   = { \tag #'print { c,8.\prall } \tag #'midi { \times 2/3 { d32 c d } c8 } }
trillGqp       = { \tag #'print { g8.\prall } \tag #'midi { \times 2/3 { a32 g a } g8 } }
trillCq        = { \tag #'print { c8\prall } \tag #'midi { d32 c d c~ } }
trillD         = { \tag #'print { d4\prall } \tag #'midi { e32 d e d~ d8 } }
trillGqqqp     = { \tag #'print { g16.\prall } \tag #'midi { \times 2/3 { g32 a g } g16~ } }
appoA          = { \tag #'print { \appoggiatura g8 a4 } \tag #'midi { g8 a8 } }

upper = \relative c'' {
  \clef treble 
  \key c \major
  \time 2/4
  \tempo 4 = 86
  \set Staff.midiInstrument = #"harpsichord"
  \override TupletBracket.bracket-visibility = ##f % 

      s8*0^\markup{Allegro}
      \trillCqp b32 c \trillGqp f32 g \trillCqpDown b32 c \stemUp \change Staff = "lower" \trillGqp f32 g \stemNeutral \change Staff = "upper" | r4 \repeat unfold 2 { < c' bes' >4 | < c a' > \trillBqpUp a32 b | c4 }
      % ms. 7 suite
      \times 2/3 { g16[ f e e d c] } | \stemUp \repeat unfold 2 { d8 g b, c } | \stemNeutral \omit TupletNumber \trillD \times 2/3 { g,16[ fis g g a b] } |
      % ms. 11
      b8 c \times 2/3 { a16[ gis a a b c] } | c8 d r8 b8 | d e r8 c8 | e fis \times 2/3 { d16[ cis d d e fis] } |
      % ms. 15
      \trillGqp fis32 g \times 2/3 { a16[ g fis e d c] }   |   \trillCq b8 e8\rest \stemUp g8^~ g e e8\rest g8^~ | \stemNeutral g d r8 g8~ |
      % ms. 19
      \times 2/3 { g16[ g fis e d c] }  \times 2/3 { b16[ c d g, a fis] }   |   \acciaccatura fis8 g4  \times 2/3 { bes16[ c d d ees f] } | << { g8 fis \times 2/3 { fis16[ g a] } \trillGqqqp fis64 g | \appoA } \\ { ees8 d4 c8 | d4 } >>

}

lower = \relative c' {
  \clef bass
  \key c \major
  \time 2/4
  \set Staff.midiInstrument = #"harpsichord"
  \override TupletBracket.bracket-visibility = ##f
  \omit TupletNumber 

    % **************************************
      R2 | s2 | \repeat unfold 2 { << { c,8 c'4.~ | c8 f4 e16 d } \\ { \mergeDifferentlyDottedOn c,4. d16 e  | f4 g } >> } << { c4 } \\ {   \tempo 4 = 60 c,4 } >>   \tempo 4 = 86 r4 |
      % ms. 8
      g'8 \stemDown \change Staff = "upper" g'_~ \times 2/3 { g16[ f e e d c] } | \stemNeutral \change Staff = "lower" g,8 g'~ \times 2/3 { g16[ f e e d c] } | g4 r8 g'8 |
      % ms. 11
      a8 a, r8 a'8 | b b, \times 2/3 { g'16[ fis g g a b] } | b8 c \times 2/3 { a16[ gis a a b c] } | c8 d r8 c8 |
      % ms. 15
      b8 g fis d | g g, \stemDown \change Staff = "upper" \times 2/3 { g''16[ a b b c d] } | \stemUp \change Staff = "lower"  c,,4 \stemDown \change Staff = "upper" \times 2/3 { c'16[ d e e f g] } | \stemUp \change Staff = "lower"  g,,4  \stemDown  \times 2/3 { g'16[ a b b c d] } \stemNeutral |
      % ms. 19
      c,,4 d8 d' | g g, r4 | << { c'8 d4 c8 | d4 } \\ { c,8 d ees4 | d } >>

}

thePianoStaff = \new PianoStaff <<
    \set PianoStaff.instrumentName = #"Clav."
    \new Staff = "upper" \upper
    \new Staff = "lower" \lower
  >>

\score {
  \keepWithTag #'print \thePianoStaff
  \layout {
      #(layout-set-staff-size 17)
    \context {
      \Score
     \override SpacingSpanner.common-shortest-duration = #(ly:make-moment 1/2)
      \remove "Metronome_mark_engraver"
    }
  }
}

\score {
  \keepWithTag #'midi \thePianoStaff
  \midi { }
}
Premières mesures de la sonate en ut majeur K. 250, de Domenico Scarlatti.

Manuscrits

Le manuscrit principal est le numéro 15 du volume IV (Ms. 9775) de Venise (1753), copié pour Maria Barbara ; l'autre est Parme VI 5 (Ms. A. G. 31411)[2].

Parme VI 5, première section.

Modèle:Message galerie

Interprètes

La sonate K. 250 est défendue au piano notamment par Carlo Grante (2013, Music & Arts, vol. 4) et Soyeon Lee (2017, Naxos, vol. 21) ; au clavecin par Scott Ross (1985, Erato)[3], Richard Lester (2002, Nimbus, vol. 2) et Pieter-Jan Belder (Brilliant Classics, vol. 6).

Notes et références

  1. Chambure 1985, p. 200.
  2. Kirkpatrick 1982, p. 467.
  3. Victor Tribot Laspière, « Au Château d’Assas, sur les traces de Scott Ross et de Scarlatti », sur France Musique, (consulté le )

Sources

Document utilisé pour la rédaction de l’article : document utilisé comme source pour la rédaction de cet article.

Liens externes