Re: Make two headers on the same page

2021-04-24 Thread Knute Snortum
On Sat, Apr 24, 2021 at 11:38 AM Николай Аничков wrote: > > So I can use /line and /book as well (Be sure to include the LilyPond list in your replies.) I haven't used \book, so I don't know. -- Knute Snortum

Re: Make two headers on the same page

2021-04-24 Thread Knute Snortum
On Sat, Apr 24, 2021 at 6:42 AM Karlin High wrote: > > On 4/23/2021 5:45 PM, Николай Аничков wrote: > > Please help me create two titles on the same page. > > Here is one way. > > % BEGIN LILYPOND CODE > > \version "2.19.48" % The latest version lilybin.com currently has > \header { >title =

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

2021-04-24 Thread Gianmaria Lari
Thank you David for your help. I made some tests with \displayMusic and I have seen the situation :) Thank you Aaron for the detailed explanation and also for the other code! I will continue to use your \extract code but I keep also the new one for the future :) Have a nice w/e. Ciao, g On

Re: Make two headers on the same page

2021-04-24 Thread Karlin High
On 4/23/2021 5:45 PM, Николай Аничков wrote: Please help me create two titles on the same page. Here is one way. % BEGIN LILYPOND CODE \version "2.19.48" % The latest version lilybin.com currently has \header { title = \markup { \fill-line { \center-column { "First Title"

Re: Tuplets and line break confusion

2021-04-24 Thread Lukas-Fabian Moser
Hi, Am 24.04.21 um 13:01 schrieb Николай Аничков: Hello! I am faced with the problem of displaying some rhythms. For example, the third and seventh measures look different, although they are simply copied. The line break is not displayed at all and furthermore it destroys the league between

Tuplets and line break confusion

2021-04-24 Thread Николай Аничков
Hello! I am faced with the problem of displaying some rhythms. For example, the third and seventh measures look different, although they are simply copied. The line break is not displayed at all and furthermore it destroys the league between the fourth and fifth bars. -- С уважением, Николай

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

2021-04-24 Thread Aaron Hill
On 2021-04-23 11:32 pm, David Kastrup wrote: Gianmaria Lari writes: 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". Try \displayMusic

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

2021-04-24 Thread David Kastrup
Gianmaria Lari writes: > 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". Try \displayMusic rather than \displayLilyMusic for

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

2021-04-24 Thread Gianmaria Lari
This should be the good one that doesn't work :) \version "2.23.2" #(define (first-element music) (first (ly:music-property music 'elements))) { #(first-element #{ \chordmode {c} #}) } Ciao, g.

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

2021-04-24 Thread Gianmaria Lari
Ah!!! Sorry, I made many tests and I copied the wrong code. My apologies. g. On Sat, 24 Apr 2021 at 08:11, David Kastrup wrote: > Gianmaria Lari writes: > > > Thank you Aaron and Jean, your code works! > > > > But I have some trivial questions. > > If I write: > > > > \displayLilyMusic

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

2021-04-24 Thread David Kastrup
Gianmaria Lari writes: > 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.