Hi there :
There's some way to represent "graduated harmony" on LilyPond ?
Am using "figurated bass" to set chord inversions:
%% Code###
\version "2.18.2"
\language "english"
\header {
title = "Graduated Harmony"
composer = "GWB70"
}
global = {
\key e \minor
\time 4/4
\tempo 4=100
}
Chords =\new Staff {
<<
\chordmode {
\global
% Intro####
e1:m |
e1:m |
a1:sus2 /e |
a1:sus2 /e |
}
\addlyrics {
% Intro###
i |
- |
IVsus2 |
- |
}
\new FiguredBass {
\bassFigureExtendersOn
\figuremode {
%Intro###
<0>1 |
<0>1 |
<6 4>1 |
<0>1 |
}
}
>>
}
\score {
\Chords
\layout { }
\midi { }
}
%% End###
Please:
If there's omething better than this,let me know.
Thank you:
Glauco.