\version "2.12.1" date = #(strftime "%d %B %Y" (localtime (current-time))) \header { title = "Gens du pays" composer = "Gilles Vigneault / Gaston Rochon" source = "" style = "" copyright = \date lastupdated = "" tagline = "" } thechords = { \chordmode { \time 3/4 R2. f2. f2. bes2. g2.:m f2. c2.:7 f2. f2. f2. f2. bes2. g2.:m f2. c2.:7 f2. \time 4/4 f1 f1 a2:m bes2 f2 c2:7 f1 d2:m b4:m7 e:7 a1:m b2:m7 e:7 d2:m7 g2:7 c1:7 } } % music pieces %part: melody melody = { \set Staff.instrumentName = "Mélodie " \relative c'' { \key f \major \mark \default \tempo 2. = 60 \time 3/4 a4 g f | c'2. | a4 g f | d'2. | g,4 bes d | c2 c4 | c2 d4 | c2. | a4 g f | c'2. | a4 g f | d'2. | g,4 bes d | c2 f,4 | a2 g4 | f2.~ | \bar "||" \mark \default \tempo 4 = 160 \time 4/4 f4 r f8 c d e | f2 f8 g a bes | c4 c f,8 g a bes | c4 f, \times 2/3 { e a g } | f2 f8 c d e | f2 d'8 d c b | a4 a c8 c b a | \times 2/3 { a4 g f } e e | r8 c' b a g f e d | c1 | } } %part: harmony harmony = { \set Staff.instrumentName = "Harmonie " \relative c'' { \key f \major \mark \default \time 3/4 R2. r4 a2 | R2. r4 f2 | bes4 d f | a,4 g f | e4 g bes | a2. | a4 g f | r4 a2 | a4 g f | r4 f2 | bes4 d f | a,4 g f | r4 2 | 2. ~ | \bar "||" \time 4/4 4 r r2 | f8 c' a2 r4 | a8 e' 4 d2 | r4 r | a2 r | c2 4 | 2 | d2 | 2 b' | r4 2. | } } %part: bass bass = { \set Staff.instrumentName = "Basse " \relative c { \key f \major \mark \default \time 3/4 R2. f,2. | f4 g a | bes2 a4 | g2. | c4 c2 | c4 c2 | f,4 a c ~ | c2. | f,2. | f4 g a | bes2 a4 | g2. | c2. | c4 c2 | f,2. ~ | \bar "||" \mark \default \time 4/4 f4 r r2 | f1 | a2 bes | c2 c | f2 r4 f8 e | d4 c b e | a,1 | b2 e | d2 g | c,1 | } } thewords = \lyricmode { %\addlyrics { Gens du pa -- ys C'est vot -- re tour de vous lais -- ser par -- ler d'a -- mour, Gens du pa -- ys c'est vot -- re tour de vous lais -- ser par -- ler d'a -- mour. Le temps que l'on prend pour di -- re je t'ai -- me est le seul qui reste au bout de nos jours. Les voeux que l'on fait, les fleurs que l'on sè -- me cha -- cun les ré -- colte en soi- mê -- me aux beaux jar -- dins du temps qui court. %} } %layout \book { \score { << %\unfoldRepeats \new Staff \thechords \unfoldRepeats \new Staff \melody \unfoldRepeats \new Staff \harmony \unfoldRepeats \new Staff \bass >> \midi { } } } #(set-default-paper-size "letter" 'portrait) #(define output-suffix "C") \book { \paper { %#(define indent (* 0 cm)) page-count = 1 between-system-padding=0 } \header { poet = "C / Do" } \score { << \new ChordNames { \set chordChanges = ##t \thechords } \new Voice = "melody" { \melody } \new Lyrics \lyricsto "melody" { \thewords } \new Staff \harmony \new Staff { \clef bass \bass } >> } } #(define output-suffix "Bflat") \book { \paper { %#(define indent (* 0 cm)) page-count = 1 between-system-padding=0 } \header { poet = "B flat / Si bémol" } \score { << \new ChordNames { \set chordChanges = ##t \transpose bes c \thechords } \new Voice = "melody" { \transpose bes c' \melody } \new Lyrics \lyricsto "melody" { \thewords } \new Staff \transpose bes c' \harmony \new Staff { \transpose bes c''' \bass } >> } } #(define output-suffix "Eflat") \book { \paper { %#(define indent (* 0 cm)) page-count = 1 between-system-padding=0 } \header { poet = "E flat / Mi bémol" } \score { << \new ChordNames { \set chordChanges = ##t \transpose ees c \thechords } \new Voice = "melody" { \transpose ees c' \melody } \new Lyrics \lyricsto "melody" { \thewords } \new Staff { \transpose ees c \harmony } \new Staff { \transpose ees c'' \bass } >> } } #(define output-suffix "F") \book { \paper { %#(define indent (* 0 cm)) page-count = 1 between-system-padding=0 } \header { poet = "F / Fa" } \score { << \new ChordNames { \set chordChanges = ##t \transpose f c \thechords } \new Voice = "melody" { \transpose f c' \melody } \new Lyrics \lyricsto "melody" { \thewords } \new Staff { \transpose f c \harmony } \new Staff { \transpose f c'' \bass } >> } }