lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lead sheet


From: Ole Schmidt
Subject: Re: lead sheet
Date: Fri, 22 Jul 2011 19:46:57 +0200

> 
> I would like to make a lead sheet very schematic and simple. My idea is
> start from the context Chordnames in order to write every name of the chord
> placed over each measure over which I want to write as maximum tow chords.
> My goal is to place the bar lines symmetrically making measures with the
> same size in order to visualize better the structure harmonic and the number
> of measures. Apart of the name of the chord over the measure I would like
> that the content of each measure were empty, not including the symbol of a
> rest in the measure as it appears in my example.
> 

You can use s instead of R and

\set Score.proportionalNotationDuration = #(ly:make-moment 1 4) 

like this:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\header {
   opus = "Sin titulo"
   piece = "Tenor Sax Bb"
   title = "Sin titulo"
}
#(set-global-staff-size 20)
#(set-default-paper-size "a4")

melody = \relative c' {

s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
s1
s1
s1
s1 | \break
}



harmonies = \chordmode {

g1:m
c1:m7
f1:7
bes1
ees1
a1:7
d1:maj7
d1:m7
g1:m7
c1:7
f1
bes1
b2:m7 e:7
a1
a2 fis:7
b1:m7.5-
e1:7
a
a
aes:m7.5-
cis
fis
d:7
f
d
f
d
f
}

\score {
<<
\set Score.proportionalNotationDuration = #(ly:make-moment 1 4) 

   \new ChordNames {
    \set chordChanges = ##t
    \harmonies
   }
   \new Staff \melody
>>
 \layout {
   indent = 0\in
  }

\midi { }
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


hth ole





reply via email to

[Prev in Thread] Current Thread [Next in Thread]