I have a few
questions.
1. Why does the following create a .pdf and a
midi, but when I play the .midi file it just stops... it never plays
anything?
2. I want it only to show the chord names, not
the notes..... how can I do that?
3. How do I generate "\" signs inside the lines,
so I can show when to play the Chord that way? An example: 4 strokes on
the guitar: \ \ \ \
4. Another question: I want to create a ly
file with only one D-chord played on the guitar. How is that
possible?
---------------------------------------------
\version "2.6.3"
\header
{
title = "Improvise"
composer =
"Jannik Jeppesen"
}
chordline = \chordmode {
\repeat volta
20 {
a1:m c g e:m
}
}
\score {
<<
\chordline
>>
\layout {}
}
\score {
\unfoldRepeats \chordline
\midi { \tempo 4 = 120 }
}
-------------------------------------------