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

2023-04-14 Thread Jean Abou Samra
> Le 14 avr. 2023 à 09:13, Valentin Petzel a écrit : > > A markup list is a list of markups, This ain’t true, since \markuplist \table … is a markup list but not a Scheme list of markups, unlike \markuplist { a b c }, but I agree with the rest of your post. Best, Jean

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

2023-04-14 Thread Werner LEMBERG
> how should \column not be the "right" way? A markup list is a list > of markups, but does not contain any information about how these > should be positioned. [...] In hindsight everything's clear now, thanks :-) Werner

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

2023-04-14 Thread Valentin Petzel
s to stack them vertically by baseline. The default behaviour when encountering a markuplist in a markup is to stack them horizontally with some separating space. But generally a markuplist needs to be interpreted in some way. In a markup context this is done using functions like \column (

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

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: markuplist and markup

2014-03-12 Thread Simon Albrecht
Well, now you ask, I did find it difficult to figure out what \markuplist actually does. As the command overviews in NR A.10 and A.11 are separated, I thought \markuplist and \markup were actually different things and somehow incompatible. As I now take it, it’s rather like \markuplist splits

Re: markuplist and markup

2014-03-12 Thread David Kastrup
Simon Albrecht simon.albre...@mail.de writes: Well, now you ask, I did find it difficult to figure out what \markuplist actually does. As the command overviews in NR A.10 and A.11 are separated, I thought \markuplist and \markup were actually different things and somehow incompatible. As I

markuplist and markup

2014-03-10 Thread Simon Albrecht
Hello, is there any possibility to include \markuplist commands inside \markup? I’m trying to use a \table-of-contents with reduced line-width, centered on the page and with a box around it, if possible. All of these are easily feasible with \markup commands, but not with \markuplist. Did I

Re: markuplist and markup

2014-03-10 Thread Jan-Peter Voigt
Hi Simon, you can simply use column: \override #'(baseline-skip . 0) \column \table-of-contents (or left-column) and before that you can override line-width as needed. HTH, Jan-Peter Am 10.03.2014 14:52, schrieb Simon Albrecht: Hello, is there any possibility to include \markuplist

Re: markuplist and markup

2014-03-10 Thread David Kastrup
Simon Albrecht simon.albre...@mail.de writes: is there any possibility to include \markuplist commands inside \markup? I’m trying to use a \table-of-contents with reduced line-width, centered on the page and with a box around it, if possible. All of these are easily feasible with \markup

Re: markuplist and markup

2014-03-10 Thread Simon Albrecht
I’m so sorry. I just misunderstood something, or my brain was fuzzy, but actually it all works. Have a nice day! Am 10.03.2014 15:08, schrieb David Kastrup: Simon Albrecht simon.albre...@mail.de writes: is there any possibility to include \markuplist commands inside \markup? I’m trying

Re: markuplist and markup

2014-03-10 Thread David Kastrup
Simon Albrecht simon.albre...@mail.de writes: is there any possibility to include \markuplist commands inside \markup? I’m trying to use a \table-of-contents with reduced line-width, centered on the page and with a box around it, if possible. All of these are easily feasible with \markup