Re: "compound music expression" to "music" expression"

2021-04-23 Thread Gianmaria Lari
Thank you Aaron and Jean, your code works! But I have some trivial questions. If I write: \displayLilyMusic \chordmode {c} I get: { < c' e' g' >4 } It looks a good "compound music expression". But Aaron code and Jean code behave differently. Have a look here This does not work. \version

percent repeat issue

2021-04-23 Thread Vaylor Trucks
I'm seeing an issue if I change time signatures during a percent repeat. Let's start with a 3 bar snare drum phrase \version "2.22.0" snareline = \drummode { \time 3/8 sn8[ sn sn] \time 2/4 sn8[ sn sn sn] \time 4/4 sn8[ sn sn sn] sn[ sn sn sn] } \score { << \new DrumStaff << \snareline >>

Make two headers on the same page

2021-04-23 Thread Николай Аничков
Hello! Please help me create two titles on the same page. When I edit the second title, it replaces the first one.-- С уважением, Николай Аничков.

Re: Confirming no color gradients

2021-04-23 Thread Henning Hraban Ramm
> Am 23.04.2021 um 20:21 schrieb Jean Abou Samra : > > Le 22/04/2021 à 03:37, Michael Blankenship a écrit : > >> I'm just hoping to confirm that Lilypond does not have any way to generate >> or apply continuous color gradients to grobs. It certainly doesn't seem like >> it, since a search

Re: Confirming no color gradients

2021-04-23 Thread Jean Abou Samra
Le 22/04/2021 à 03:37, Michael Blankenship a écrit : I'm just hoping to confirm that Lilypond does not have any way to generate or apply continuous color gradients to grobs. It certainly doesn't seem like it, since a search for the term returns *zero*results, a first for me. ​ So, no color

Feedback requested: measure counter over compressed MM rest

2021-04-23 Thread Jean Abou Samra
Hi, The measure counter currently understands a compressed MM rest as a single measure: \version "2.23.3" \new Voice \with { \consists Measure_counter_engraver } \compressMMRests { \startMeasureCount c'1 R1*5 c'1 c'1 \stopMeasureCount } This has been registered as an issue in the tracker:

Re: "compound music expression" to "music" expression"

2021-04-23 Thread Aaron Hill
On 2021-04-23 1:58 am, Jean Abou Samra wrote: If you have it at hand in Scheme: \version "2.23. #(define (first-element music)    (first (ly:music-property music 'elements))) { #(first-element #{ { c'1 } #}) } It would be helpful to understand your use case; this sounds like you may not

Re: "compound music expression" to "music" expression"

2021-04-23 Thread Jean Abou Samra
Le 23/04/2021 à 10:52, Gianmaria Lari a écrit : How can I convert a "compound music expression" made of just *one* "music expression" to a music expression? So something that "removes" curly brackets. For example it should convert {} to Thanks, g. If you have it at hand in

"compound music expression" to "music" expression"

2021-04-23 Thread Gianmaria Lari
How can I convert a "compound music expression" made of just *one* "music expression" to a music expression? So something that "removes" curly brackets. For example it should convert {} to Thanks, g.

Re: combining chords in chords

2021-04-23 Thread Valentin Petzel
Yes, but that has again a problem when jb has multiple Chords. Should be possible to write a music function for this. Am Freitag, 23. April 2021, 09:51:03 CEST schrieb David Kastrup: > Valentin Petzel writes: > > But actually, an even better way would probably be > > > > music = \new Voice

Re: combining chords in chords

2021-04-23 Thread David Kastrup
Valentin Petzel writes: > But actually, an even better way would probably be > > music = \new Voice \fixed c { <>[ \ja \jb <>] } More like music = \new Voice \fixed c { <>[ \ja <>] \jb } -- David Kastrup

Re: combining chords in chords

2021-04-23 Thread Valentin Petzel
Actually no, that does not work for the end. signature.asc Description: This is a digitally signed message part.

Re: combining chords in chords

2021-04-23 Thread Valentin Petzel
But actually, an even better way would probably be music = \new Voice \fixed c { <>[ \ja \jb <>] } signature.asc Description: This is a digitally signed message part.

Re: combining chords in chords

2021-04-23 Thread Valentin Petzel
Hello Gianmaria, I cannot talk about the other stuff, but the line music = \new Voice \fixed c \ja s[ \jb s] % Valentin solution Should be music = \new Voice \fixed c { <<\ja s[>> <<\jb s]>> } % Valentin solution Cheers, Valentin signature.asc Description: This is a digitally signed message