Re: markup circle and sub

2017-11-10 Thread bart deruyter
Hey, I found that this works: \version "2.19.62" \mark \markup \box {\concat {A \sub 1}} grtz, Bart http://www.bartart3d.be/ On Twitter On Identi.ca On Google+ 2017-11-10

Re: markup circle and sub

2017-11-10 Thread Gianmaria Lari
Thank you David, Robin and Andrew for the help and the explanation! g. On 10 November 2017 at 11:24, David Kastrup wrote: > David Kastrup writes: > > > Gianmaria Lari writes: > > > >> This code works well and create a rehearsal mark in a

Re: markup circle and sub

2017-11-10 Thread David Kastrup
David Kastrup writes: > Gianmaria Lari writes: > >> This code works well and create a rehearsal mark in a box >> >> \version "2.19.80" >> \mark \markup {\box {A1}} >> >> Now I would like the same except for the number that should be in >> subscript. What

Re: markup circle and sub

2017-11-10 Thread Robin Bannister
Gianmaria Lari wrote: (it writes A and 1 in two different boxes) \version "2.19.80" \mark \markup {* \box \concat {A \sub 1} *} \box will apply to each item in a subsequent list, unless you give the list to another command, like \concat, first. Cheers, Robin

Re: markup circle and sub

2017-11-10 Thread David Kastrup
Gianmaria Lari writes: > This code works well and create a rehearsal mark in a box > > \version "2.19.80" > \mark \markup {\box {A1}} > > Now I would like the same except for the number that should be in > subscript. What I should do? I tried this but does not work (it

Re: markup circle and sub

2017-11-10 Thread Andrew Bernard
Hi Gianmaria, \version "2.19.80" \mark \markup { \box \column {\line {A\sub1} }} Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

markup circle and sub

2017-11-10 Thread Gianmaria Lari
This code works well and create a rehearsal mark in a box \version "2.19.80" \mark \markup {*\box {A1}*} Now I would like the same except for the number that should be in subscript. What I should do? I tried this but does not work (it writes A and 1 in two different boxes): \version