Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \version "2.18.0"
  2. \include "english.ly"
  3. #(set-global-staff-size 22)
  4.  
  5. \header {
  6.  title = "SUR LE PONT D'AVIGNON"
  7.  composer = "(Comptine)"
  8.  copyright  = \markup  \fontsize #-6 \italic
  9.  {  "CC-by Jean-Michel Thiémonge @pianognu.blogspot.fr"}
  10.  tagline = ##f
  11. }
  12.  
  13. \paper {
  14.  markup-system-spacing #'basic-distance = #15
  15.  system-system-spacing #'basic-distance = #17
  16. }
  17.  
  18. global = {
  19.  \key g \major
  20.  \time 2/4
  21. }
  22.  
  23. melody = \relative c'' {
  24.  \global
  25.  \set fingeringOrientations = #'(up)
  26.  g8-.-1 g-. g4--
  27.  a8-.-2 a-. a4--
  28.  b8-3 c d g,-1 fs-2 g-3 a-4 d,-1 \break
  29.  g8-.-3 g-.-2 g4---1
  30.  a8-. a-. a4--
  31.  b8 c d g, a-4 fs-2 g4-1 \breathe
  32.  \override Score.RehearsalMark.break-visibility = #begin-of-line-invisible
  33.  \mark \markup { \teeny "Fin"}
  34.  \bar "||" \break
  35.  \cadenzaOn
  36.  g8 g g g a4 ^\accent g
  37.  r8 g8 g g \cadenzaOff a4 ^\accent g
  38.  \break
  39.  \cadenzaOn
  40.  <g-1 b-3 >8  <g b> <g b> <g b> <a-2 c-4 >4 ^\accent <g b>
  41.  r8 <g b> <g b> <g b> \cadenzaOff <a c>4 ^\accent <g b>
  42.  \bar ":|."
  43. }
  44.  
  45. accLeft = \relative c' {
  46.  \global
  47.  \set fingeringOrientations = #'(down)
  48.  g2_1 d_4 g d
  49.  g d g d4 g
  50.  g8 g g g d4_2 _\accent g4
  51.  r8 g8 g g d4 _\accent g4
  52.  g8 g g g d4 _\accent g4
  53.  r8 g g g d4 _\accent g4
  54.  \mark \markup {\tiny "Da Capo"}
  55. }
  56.  
  57. verse = \lyricmode
  58. {
  59.  Sur le pont d'A- vi- gnon
  60.  on y dan- se on y dan- se
  61.  Sur le pont d'A- vi- gnon
  62.  on y dan- se tout en rond
  63.  Les ma- dames font comme ça
  64.  et en- core comme ça
  65.  Les mes- sieurs font comme ça
  66.  et en- core comme ça
  67.  Sur le pont d'A- vi- gnon
  68.  on y dan- se on y dan- se
  69.  Sur le pont d'A- vi- gnon
  70.  on y dan- se tout en rond
  71. }
  72.  
  73. \score {
  74.  \new PianoStaff <<
  75.    \new Staff {\melody}
  76.    \addlyrics {\verse}
  77.    \new Staff {\clef bass\accLeft}
  78.  >>
  79.  \layout {
  80.    indent = 0.0\mm
  81.    \context {
  82.      \Score
  83.      \remove "Bar_number_engraver"
  84.    }
  85.    \context {
  86.      \PianoStaff
  87.      \override StaffGrouper #'staff-staff-spacing #'basic-distance = #13
  88.    }
  89.    \context {
  90.      \Lyrics
  91.      \override LyricText #'extra-offset = #'(0 . -1.5)
  92.      \override LyricText #'font-size = #-0.1
  93.    }
  94.  }
  95. }