Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \version "2.16.2"
  2. \include "english.ly"
  3. #(set-global-staff-size 21)
  4. \pointAndClickOff
  5.  
  6. \header {
  7.   title = "LETTRE A ELISE"
  8.   % subtitle = "Clavierstuck in A Minor - WoO 59"
  9.   subsubtitle = "(La premiere partie)"
  10.   composer = "Ludwig van Beethoven"
  11.   maintainer = "jmechmech"
  12.   copyright  = \markup  \fontsize #-6 \italic  {  "CC-by Jean-Michel ThiĆ©monge"}
  13.  tagline = ##f
  14. }
  15.  
  16. \paper {
  17.  page-count = 1
  18.  markup-system-spacing #'basic-distance = #20
  19.  system-system-spacing #'basic-distance = #17
  20.  bottom-margin = 2
  21. }
  22.  
  23. global = {
  24.   \key a \minor
  25.   \time 6/8
  26.   \partial 4.
  27.   %\tempo \markup  { \vspace#-0.5 \bold "poco moto" }
  28. }
  29.  
  30. right = \relative c'' {
  31.  \global
  32.  \bar "|:"
  33.  r8 e8-4\(
  34.  ds-3 e
  35.  ds e b-1 d-3 c-2
  36.  a4-1\) r8 c,-1\( e-2 a-4
  37.  b4-5\) r8 e,-1\( gs-2 b-4
  38.  c4-5\) r8 \bar "" \break
  39.  \stemDown e,-1\( e'-4 ds \stemNeutral
  40.  e ds e b d c
  41.  a4\) r8 c,\( e a
  42.  b4\) r8 e,-1\( c'-5 b-4
  43.  a4-3\) r8 \bar ":|" \break
  44.  \bar":|:" b8\(-1  c8-2 d-3 \bar"||"
  45.  e4.\)-4 g,8\(-1[ f'-5 e-4]
  46.  d4.\)-3 f,8\([ e' d] c4.\)
  47.  e,8\([ d' c] \break b4\) r8
  48.  e,-1  e'-5 r \bar "|" r
  49.  e8 e'  r4  ds,8-3
  50.  [e-4]  r4
  51.  ds8 \(  e ds \break
  52.  e8 ds e
  53.  b d c \bar"||"
  54.  a4\) r8 c,\( e a
  55.  b4\) r8 e,\( gs b
  56.  c4\) r8
  57.  \stemDown e,\( e' ds \stemNeutral
  58.  e ds e b d c
  59.  a4\) r8 c,\( e a
  60.  b4\)r8 \stemDown
  61.  e,\(  c' b
  62.  \stemNeutral a4 r8 \) ^"(Fin)" \bar ":|"
  63. }
  64.  
  65. left = \relative c' {
  66.  \global
  67.  \set Staff.pedalSustainStyle = #'bracket
  68.  r4. R2. a,8_5 \sustainOn  e'_2 a_1 r4.
  69.  e,8_5 \sustainOff \sustainOn e'_1 gs_2 r4.
  70.  a,8 \sustainOff \sustainOn [e' a] << r4. {s8 s8 \sustainOff s } >> R2.
  71.  a,8 \sustainOn e' a r4.
  72.  e,8 \sustainOff \sustainOn e' gs r4.
  73.  a,8 \sustainOff \sustainOn [ e'  a8] \sustainOff   r4.
  74.  c,8_5 \sustainOn g'_2 c_1 r4.
  75.  g,8_5 \sustainOff \sustainOn g'_1 b_2 r4.
  76.  a,8 \sustainOff \sustainOn [e' a] << r4. {s4 s8 \sustainOff } >>
  77.  e,8_5  \sustainOn [e'_1 e'_2] r4
  78.  \clef treble e8_5 [e'_1] r4
  79.  ds8-2 \sustainOff  e-1 r \bar "|"  r8 ds
  80.  [e] r4. \clef bass r2.
  81.  a,,,8 \sustainOn e' a r4.
  82.  e,8 \sustainOff\sustainOn e' gs r4.
  83.  a,8 \sustainOff \sustainOn [e' a]   << r4. {s4 s8 \sustainOff} >> R2.
  84.  a,8 \sustainOn e' a r4.
  85.  e,8 \sustainOff \sustainOn  e' gs r4.
  86.  a,8 \sustainOff \sustainOn e' a \sustainOff
  87. }
  88.  
  89. \score {
  90.  \new PianoStaff <<
  91.    \new Staff = "right" \with {
  92.      midiInstrument = "acoustic grand"
  93.    } \right
  94.    \new Staff = "left" \with {
  95.      midiInstrument = "acoustic grand"
  96.    } { \clef bass \left }
  97.  >>
  98.  \layout {
  99.    indent = 0.0\mm
  100.    \context {
  101.      \Score
  102.      \remove "Bar_number_engraver"
  103.    }
  104.    \context {
  105.      \Voice
  106.      \remove "Phrasing_slur_engraver"
  107.    }
  108.  }
  109. }