Re: Vertical spacing between wordwrap items within markup column

2023-04-12 Thread Werner LEMBERG
> Maybe I'm missing something here, but how can I make the space > between items in a markup column regular? As you can see in the > example, if the text is short so that there is no wrapping > necessary, the space is fine. But the "a a a" item does wrap around > and overlaps a bit with the "b

Vertical spacing between wordwrap items within markup column

2023-04-12 Thread Benjamin Bruce
Maybe I'm missing something here, but how can I make the space between items in a markup column regular? As you can see in the example, if the text is short so that there is no wrapping necessary, the space is fine. But the "a a a" item does wrap around and overlaps a bit with the "b b b" item

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread JD Margulici
Jean, thank you so much for your explanations and insights. You've convinced me that I'm better off building an image from an Ubuntu base. In fact I had reached the same conclusion after reading that folks use Alpine for its small size, yet a full install of Tex Live (which I also require) is

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread Jean Abou Samra
Le mercredi 12 avril 2023 à 16:07 -0700, JD Margulici a écrit : > Hi Jean, > > your diagnostic sounds promising. I successfully installed the Frescobaldi > Flatpak, but still cannot launch lilypond from the command line. Any idea how > to get there? I'm building a docker container and I don't

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread JD Margulici
Hi Jean, your diagnostic sounds promising. I successfully installed the Frescobaldi Flatpak, but still cannot launch lilypond from the command line. Any idea how to get there? I'm building a docker container and I don't have much experience with docker, so getting to the Frescobaldi GUI is not

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread JD Margulici
Thank you David. I tried a 32-bit version but the installation fails, so that confirms that I am pulling the correct version. I also tried unpacking the archive for the current release, but the executables fail as follows: the lilypond command returns: /bin/sh: lilypond: not found even though

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread JD Margulici
Thanks for the suggestions, William. I double checked the paths and permissions, and I don't think the issue is there. I also tried directly untaring the 2.24.1 files and that doesn't work either: the lilypond command returns: /bin/sh: lilypond: not found even though the directory in in my PATH

Re: How to fix markup horizontal position relative to edge of page

2023-04-12 Thread Benjamin Bruce
I think this solution will work best for my purposes. My first thought about making the procedure only calculate the indent was "Why didn't I think of that?" Thanks for working through this with me. Jean, I like your solution, the only problem is that the right-margin applies to the markup as

Re: How to fix markup horizontal position relative to edge of page

2023-04-12 Thread Jean Abou Samra
Le mercredi 12 avril 2023 à 11:31 -0700, Aaron Hill a écrit : > One option I did not see mentioned was putting the score into a markup > to horizontally center it: > > > asdf = \score { >    \relative { c'4 d e f \break g a b c } >    \layout { line-width = 4\in } > } > > \markup

Re: How to fix markup horizontal position relative to edge of page

2023-04-12 Thread Aaron Hill
Hello all, I am trying to layout some documents where the score is centered on the page, and underneath it is some markup text that is aligned left, relative to the edge of the page. In some documents the score will be wider, in some it will be narrower, but the text below it should always be

Re: How to fix markup horizontal position relative to edge of page

2023-04-12 Thread Jean Abou Samra
Le lundi 10 avril 2023 à 15:25 -0600, Benjamin Bruce a écrit : > Hello all, > I am trying to layout some documents where the score is centered on the page, > and underneath it is some markup text that is aligned left, relative to the > edge of the page. In some documents the score will be

Re: converting `\markuplist` to `\markup`

2023-04-12 Thread Werner LEMBERG
> What do you mean by “convert”? Probably bad wording: I mean to wrap a markup list into a markup. > I don’t know what it means to convert a markup list to a markup, > since there are many ways in which you can combine the stencils: > \column, \center-column, \line, \concat, \fill-line, etc. I

Re: converting `\markuplist` to `\markup`

2023-04-12 Thread Jean Abou Samra
 > Le 12 avr. 2023 à 11:07, Werner LEMBERG a écrit : >  > What's the proper way to convert a `\markuplist` to a `\markup`? > `lilypond-book` splits a top-level `\table` into separate lines; I > want to avoid that because it prevents fine-tuning of the vertical > spacing of rows. Right now I

converting `\markuplist` to `\markup`

2023-04-12 Thread Werner LEMBERG
What's the proper way to convert a `\markuplist` to a `\markup`? `lilypond-book` splits a top-level `\table` into separate lines; I want to avoid that because it prevents fine-tuning of the vertical spacing of rows. Right now I do ``` \markup \column { \table ... } ``` Werner

Re: `TextMark` doesn't react to `staff-padding`

2023-04-12 Thread Werner LEMBERG
>> I expect that both the 'x' and the 'g' are aligned at the baseline. >> However, it doesn't work. >> >> AFAICS, the `TextMark` grob contains `side-position-interface`. What >> am I missing? > > See https://gitlab.com/lilypond/lilypond/-/issues/342 Interesting, thanks! I wouldn't have

Re: `TextMark` doesn't react to `staff-padding`

2023-04-12 Thread Jean Abou Samra
> Le 12 avr. 2023 à 09:38, Werner LEMBERG a écrit : > >  > Please have a look at this snippet: > > ``` > { > \override Score.TextMark.staff-padding = 2 > \textMark "x" c'' > \textMark "g" c'' > } > ``` > > I expect that both the 'x' and the 'g' are aligned at the baseline. > However, it

`TextMark` doesn't react to `staff-padding`

2023-04-12 Thread Werner LEMBERG
Please have a look at this snippet: ``` { \override Score.TextMark.staff-padding = 2 \textMark "x" c'' \textMark "g" c'' } ``` I expect that both the 'x' and the 'g' are aligned at the baseline. However, it doesn't work. AFAICS, the `TextMark` grob contains `side-position-interface`.

Re: /usr/local/lilypond/usr/bin/lilypond: not found

2023-04-12 Thread Jean Abou Samra
Le 12 avr. 2023 à 02:26, JD Margulici a écrit :Hello, I am running the following commands to install Lilypond on Alpine Linux:wget https://lilypond.org/download/binaries/linux-64/$LILYPOND_INSTALLERsh $LILYPOND_INSTALLERwith LILYPOND_INSTALLER set to lilypond-2.23.6-1.linux-64.shThe installation