浜辺の歌

hamabenouta01.pdf 直
hamabenouta01.midi 直

\version "2.16.0"

\header {
  title = "浜辺の歌"
  composer = "成田為三"
}

chExceptionMusic = {
  <c es ges>1-\markup { \super "dim" }
  <c es ges beses>1-\markup { \super "dim7" }
  <c e g b>1-\markup { \super "maj7" }
  <c e gis>1-\markup { \super "aug" }
}
chExceptions = #( append
                  ( sequential-music-to-chord-exceptions chExceptionMusic #t)
                  ignatzekExceptions)

global = {
  \key f \major
  \numericTimeSignature
  \time 3/4
  \tempo 4=100
  \partial 4
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordNameExceptions = #chExceptions
  \set chordChanges = ##t
  s4 f2. f bes bes
  f f c:7 c:7
  f f bes bes
  f c:7 f f
  c c:aug f f
  bes bes c:7 c:7
  f f bes bes
  f c:7 f f
}

melody = \relative c'' {
  \global
  % Music follows here.
  c,4 |%0
  c2 f8 g |%1
  a2 g8 f |%2
  g2 ( d4) |%3
  f2 e8 d |%4
  \break
  c2 ( f4) |%5
  a2 g8 f |%6
  g2.~ |%7
  g4  r c, |%8
  \break
  c2 f8 g |%9
  a2 g8 f |%10
  g2 ( d4 ) |%11
  f2 e8 d |%12
  \break
  c2 ( a'4) |%13
  c,2 g'4 |%14
  f2. ~ |%15
  f4 r c' |%16
  \break
  c2 g4 |%17
  c2 ( gis4 ) |%18
  c2. |%19
  a2 d4 |%20
  \break
  d2 bes4 |%21
  f2 g4 |%22
  c2.~ |%23
  c4 r c, |%24
  \break
  c2 f8 g |%25
  a2 ( g8 f ) |%26
  g2 ( d4 ) |%27
  f2 e8 d |%28
  \break
  c2 a'4 |%29
  c,2 g'4 |%30
  f2.~ |%31
  f2 r4 |%32
  \bar "|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi { }
}