lilypond-user
[Top][All Lists]
Advanced

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

Re: chord duration


From: Malte Meyn
Subject: Re: chord duration
Date: Wed, 31 Oct 2018 09:04:59 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1



Am 31.10.18 um 09:00 schrieb Gianmaria Lari:
The following code...

    \version "2.19.82"
    \new ChordNames \chordmode { c8~c2 }


displays C C. How can I make it display a single C chord that last 8~2?

There are several possibilities:

%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.19.82"

\new ChordNames \with {
  chordChanges = ##t % don’t repeat unchanged chord
} \chordmode { c8 c2 }

\new ChordNames \chordmode { c8 s2 } % set a spacer rest instead of c2

\new ChordNames \chordmode { c8*5 } % chord with duration 8*5 = 8~2
%%%%%%%%%%%%%%%%%%%%%%%%%%%



reply via email to

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