%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.18.2"
global = {
\key c \major
\time 4/4
\tempo 4=54
}
melodie = \relative c' {
\global
% \shiftOn
<g, b d g b g'>8. <g b d g b g'>16
<g' a, e' g, c' e>16 <g a, e' g, c' e>8.
c16\4 g'8\2 c,16\4 a'4\2
\oneVoice r2 r4 b,8 c
\voiceOne
\repeat volta 4 {
d8. c16 b c d8 <d, a' b, d' fis>4 b'8 c
d4 d16 d8 e16 (e) (g,8.) g8 a
b4 g8 a b4 c8 b
}
\alternative {
{
b8 a16 a (a) g a8
<d, a' d fis>4 b'8 c
}
{
b8 a16 g (g8) d16 g r4 r8 g16 b (
}
}
\time 3/4 b4.) b8 b a16 g \bar "|."
}
basse = \relative c {
\global
% \shiftOn %décale les têtes de notes
s1 %silence invisible
s
g2 s2 <c e g>2
%s16
<a e' g>2
%s8
<g d' g>2
%s16
<e e' g>2
% s16
<a e' a>2
s
<d a'>4
<g, b d>2
s4 s4. <d' a'>8 <c e>4
\stopStaff s4-\markup \column { \null \bold "Intro" \null }
}
Accord = \chordmode {
s1 s1
g2 b:m7
c a:m7
g e:m
a:m d
d4 g2.
d2 c4
}
\score {
\new StaffGroup \with {
\consists "Instrument_name_engraver"
%instrumentName = "Guitare Jazz"
} <<
\new ChordNames { \Accord }
\new Staff \with {
midiInstrument = "electric guitar (jazz)"
} { \clef "treble_8" << \melodie \\ \basse >> }
\new TabStaff \with {
stringTunings = #guitar-tuning
instrumentName = \markup \bold \fontsize #-6 \column {
"E""B""G""D""A""E"
}
} <<
\new TabVoice { \voiceOne \melodie }
\new TabVoice { \voiceTwo \basse }
>>
>>
\layout {
\context {
\Voice
\consists Pitch_squash_engraver
}
}
}
%-----------------------------------
\header {
title = "Father and Son"
composer = \markup \bold "Cat Stevens"
}
\paper {
top-margin = 20 % marge du haut
line-width = 180 % largeur des lignes
markup-system-spacing.basic-distance = #20 %espace entre le bas du header et le 1er system
system-system-spacing.basic-distance = #20 %espace entre les systemes
ragged-bottom = ##t
}
%%%%%%%%%%%%%%%%%%%%%%%%%