Re: Unexpected suffix in chordmode

2024-05-30 Thread Knute Snortum
On Thu, May 30, 2024 at 6:32 AM Pierre-Luc Gauthier <
p.luc.gauth...@gmail.com> wrote:

> Since you wrote : cis
>
> maybe you want :
>
> \new ChordNames \chordmode {
>   g1:11+13
> }
>
> which gives picrelated :
>
> Then again, there is an extra 7 which is already implied…
>

You can create chord name exceptions to get rid of the 7 or 9 from the
chord modifiers:

%%%
\version "2.24.3"

% modify 13 and #11 13 chords
% Exception music is chords with markups
chExceptionMusic = {
  1-\markup { \super "13" }
  1-\markup { \raise #1.8 \teeny \sharp \super "11
13" }
}

% Convert music to list and prepend to existing exceptions.
chExceptions = #(append
  (sequential-music-to-chord-exceptions chExceptionMusic #t)
  ignatzekExceptions)

theMusic = \chordmode {
  g1:13 g1:11+.13
  \set chordNameExceptions = #chExceptions
  g1:13 g1:11+.13
}

<<
   \new ChordNames \theMusic
   \new Voice \theMusic
>>
%%%


--
Knute Snortum


Re: Unexpected suffix in chordmode

2024-05-30 Thread Pierre-Luc Gauthier
Since you wrote : cis

maybe you want :

\new ChordNames \chordmode {
  g1:11+13
}

which gives picrelated :

Then again, there is an extra 7 which is already implied…

Le sam. 25 mai 2024, à 19 h 20, Nikita Borisenko  a écrit :
>
> That's amazing - thank you, Knute!
>
> Sincerely,
> Nikita
>
> On Sun, May 26, 2024 at 2:07 AM Knute Snortum  wrote:
>>
>>
>>
>> --
>> Knute Snortum
>>
>>
>>
>> On Sat, May 25, 2024 at 2:18 PM Nikita Borisenko  wrote:
>>>
>>> Hi Everyone,
>>>
>>> Can anyone please advise why the following snippet outputs G9.13 instead of 
>>> just the G13 chord name?
>>
>>
>> I don't know "why", but this is how you would get just a 13 chord:
>>
>> changes = \chordmode {
>>| g1:11.13 |
>> }
>>
>> You can find the common chord modifiers here:
>>
>> https://lilypond.org/doc/v2.24/Documentation/notation/common-chord-modifiers



-- 
Pierre-Luc Gauthier


Re: Unexpected suffix in chordmode

2024-05-25 Thread Nikita Borisenko
That's amazing - thank you, Knute!

Sincerely,
Nikita

On Sun, May 26, 2024 at 2:07 AM Knute Snortum  wrote:

>
>
> --
> Knute Snortum
>
>
>
> On Sat, May 25, 2024 at 2:18 PM Nikita Borisenko  wrote:
>
>> Hi Everyone,
>>
>> Can anyone please advise why the following snippet outputs G9.13 instead
>> of just the G13 chord name?
>>
>
> I don't know "why", but this is how you would get just a 13 chord:
>
> changes = \chordmode {
>| g1:11.13 |
> }
>
> You can find the common chord modifiers here:
>
>
> https://lilypond.org/doc/v2.24/Documentation/notation/common-chord-modifiers
>
>


Re: Unexpected suffix in chordmode

2024-05-25 Thread Knute Snortum
--
Knute Snortum



On Sat, May 25, 2024 at 2:18 PM Nikita Borisenko  wrote:

> Hi Everyone,
>
> Can anyone please advise why the following snippet outputs G9.13 instead
> of just the G13 chord name?
>

I don't know "why", but this is how you would get just a 13 chord:

changes = \chordmode {
   | g1:11.13 |
}

You can find the common chord modifiers here:

https://lilypond.org/doc/v2.24/Documentation/notation/common-chord-modifiers