No edit summary
Line 20: Line 20:


<syntaxhighlight lang="lilypond">
<syntaxhighlight lang="lilypond">
<score>
<score lang="lilypond" sound="1" >  
\relative c'' { \time 4/4 \key c \major
\language "italiano"
c4 g8 g a4 g r b^> c^> r \bar "|." }  
\header {
\addlyrics { Shave and a hair -- cut: two bits. }
    tagline = "real folk"
    title = "song"
    composer = "author"
  }
<<
  \new ChordNames \chordmode {
    \set chordChanges = ##t
la1:m7 do sol mi:m
  }
 
\new Staff = "violin" \with {
    instrumentName = "Vio"
    midiInstrument = "violin"
  }
 
\transpose do do' {
\time 4/4
\tempo "Presto" 4 = 120
\key la \minor
la4 mi' re' do | sol8 la si8. do'16 si4 la | fa8 (sol) la fa mi4 fa | do8 re mi fa mi re sol4|
}
 
\addlyrics {
bla bla ba -- ba -- la ba __ aa __ aa __ aa
}
>>
\layout {
  indent = 3.0\cm
  short-indent = 1.5\cm
  #(set-global-staff-size 14)
  papersize = "a5"
  pagenumber = "yes"
}
\midi {
    \context {
      \Score tempoWholesPerMinute = #(ly:make-moment 60 4)
    }
    \tempo 4 = 72
}
</score>
</score>
</syntaxhighlight>
</syntaxhighlight>
Line 29: Line 67:
yields to:
yields to:


<score lang="lilypond" sound="1">
<score lang="lilypond" sound="1" >  
\relative c'' { \time 4/4 \key c \major
\language "italiano"
c4 g8 g a4 g r b^> c^> r \bar "|." }  
\header {
\addlyrics { Shave and a hair -- cut: two bits. }
    tagline = "real folk"
    title = "song"
    composer = "author"
  }
<<
  \new ChordNames \chordmode {
    \set chordChanges = ##t
la1:m7 do sol mi:m
  }
 
\new Staff = "violin" \with {
    instrumentName = "Vio"
    midiInstrument = "violin"
  }
 
\transpose do do' {
\time 4/4
\tempo "Presto" 4 = 120
\key la \minor
la4 mi' re' do | sol8 la si8. do'16 si4 la | fa8 (sol) la fa mi4 fa | do8 re mi fa mi re sol4|
}
 
\addlyrics {
bla bla ba -- ba -- la ba __ aa __ aa __ aa
}
>>
\layout {
  indent = 3.0\cm
  short-indent = 1.5\cm
  #(set-global-staff-size 14)
  papersize = "a5"
  pagenumber = "yes"
}
\midi {
    \context {
      \Score tempoWholesPerMinute = #(ly:make-moment 60 4)
    }
    \tempo 4 = 72
}
</score>
</score>


{{Special:PrefixIndex|prefix=|namespace=4}}
{{Special:PrefixIndex|prefix=|namespace=4}}

Revision as of 16:38, 18 July 2024

Folk real book

Collection of traditional folk songs Category:Real folk

Brescia section Category:Brescia folk

Latest updates:


documentation

This page uses lilypond notation [1] to write songs using this extension [2] Writing in this notation

<score lang="lilypond" sound="1" > 
\language "italiano"
 \header {
    tagline = "real folk" 
    title = "song"
    composer = "author"
  }
<<
  \new ChordNames \chordmode {
    \set chordChanges = ##t 
la1:m7 do sol mi:m
  }

\new Staff = "violin" \with {
    instrumentName = "Vio"
    midiInstrument = "violin"
  }

\transpose do do' {
\time 4/4
\tempo "Presto" 4 = 120
\key la \minor
la4 mi' re' do | sol8 la si8. do'16 si4 la | fa8 (sol) la fa mi4 fa | do8 re mi fa mi re sol4| 
}

\addlyrics {
bla bla ba -- ba -- la ba __ aa __ aa __ aa
}
>>
\layout {
  indent = 3.0\cm
  short-indent = 1.5\cm
  #(set-global-staff-size 14)
  papersize = "a5"
  pagenumber = "yes"
}
\midi {
    \context {
      \Score tempoWholesPerMinute = #(ly:make-moment 60 4)
    }
    \tempo 4 = 72
}
</score>

yields to:

 
\language "italiano"
 \header {
    tagline = "real folk" 
    title = "song"
    composer = "author"
  }
<<
  \new ChordNames \chordmode {
    \set chordChanges = ##t 
la1:m7 do sol mi:m
  }

\new Staff = "violin" \with {
    instrumentName = "Vio"
    midiInstrument = "violin"
  }

\transpose do do' {
\time 4/4
\tempo "Presto" 4 = 120
\key la \minor
la4 mi' re' do | sol8 la si8. do'16 si4 la | fa8 (sol) la fa mi4 fa | do8 re mi fa mi re sol4| 
}

\addlyrics {
bla bla ba -- ba -- la ba __ aa __ aa __ aa
}
>>
\layout {
  indent = 3.0\cm
  short-indent = 1.5\cm
  #(set-global-staff-size 14)
  papersize = "a5"
  pagenumber = "yes"
}
\midi {
    \context {
      \Score tempoWholesPerMinute = #(ly:make-moment 60 4)
    }
    \tempo 4 = 72
}