Re: chordnames chordmode and markup

2024-09-30 Thread Xavier Scheuer
On Mon, 30 Sept 2024 at 01:13, Walt North wrote: > > Is it possible in someway to get some sort of markup behavior in chordmode? They are cases where I want to add a remark for the rhythm guitar player for one reason or another for some chords. > > Simple minded example below. For a staff note I

chordnames chordmode and markup

2024-09-29 Thread Walt North
Is it possible in someway to get some sort of markup behavior in chordmode?  They are cases where I want to add a remark for the rhythm guitar player for one reason or another for some chords. Simple minded example below.  For a staff note I can add text. But lilypond throws an error when I tr

Re: chordmode and markup

2016-04-08 Thread Gianmaria Lari
Gianmaria Lari wrote: > Thomas Morley writes: >> >> > The situation is a little more problematic, though. >> > \chordmode { c_\markup { test } } >> > works, yes, but both of the following two return an error: >> > \chordmode { c-\markup { test } } >> > \chordmode { c^\markup { test } } >> > > Is

Re: chordmode and markup

2016-04-08 Thread Gianmaria Lari
> > Thomas Morley writes: > > > The situation is a little more problematic, though. > > \chordmode { c_\markup { test } } > > works, yes, but both of the following two return an error: > > \chordmode { c-\markup { test } } > > \chordmode { c^\markup { test } } > Is there any escamotage to make th

Re: chordmode and markup

2016-04-06 Thread David Kastrup
Thomas Morley writes: > The situation is a little more problematic, though. > \chordmode { c_\markup { test } } > works, yes, but both of the following two return an error: > \chordmode { c-\markup { test } } > \chordmode { c^\markup { test } } Yes, I was already brainstorming about that. I rea

Re: chordmode and markup

2016-04-06 Thread Thomas Morley
2016-04-07 0:55 GMT+02:00 Simon Albrecht : > On 07.04.2016 00:49, Thomas Morley wrote: 3 Would it be possible to write in the compiler error a hint for the user? Something like: Error: markup outside of text script or \lyricmode \chordmode {c} _\markup

Re: chordmode and markup

2016-04-06 Thread Simon Albrecht
On 07.04.2016 00:49, Thomas Morley wrote: 3 Would it be possible to write in the compiler error a hint for the user? Something like: Error: markup outside of text script or \lyricmode \chordmode {c} _\markup {test} Maybe you want to do \chordmode{c _\markup {test}}

Re: chordmode and markup

2016-04-06 Thread Thomas Morley
2016-04-07 0:26 GMT+02:00 Simon Albrecht : > On 06.04.2016 23:33, Gianmaria Lari wrote: >> >> >> Why this is not correct: >> >>\chordmode {c} \markup {test} >> >> [Carl] >> >When you do \chordmode{c}, you have ended the music expression containing >> >the c, so you can no longer attach a markup to

Re: chordmode and markup

2016-04-06 Thread Thomas Morley
2016-04-06 18:57 GMT+02:00 David Kastrup : > Gianmaria Lari writes: > >> Sorry to ask something probably trivial but reading manual and making tests >> didn't help me. >> >> This works perfectly: >> \version "2.19.39" >> { >> a4 _\markup {test} >> } >> >> but this doesn't: >> >> \version "2.19.3

Re: chordmode and markup

2016-04-06 Thread Simon Albrecht
On 06.04.2016 23:33, Gianmaria Lari wrote: >> Why this is not correct: >>\chordmode {c} \markup {test} [Carl] >When you do \chordmode{c}, you have ended the music expression containing >the c, so you can no longer attach a markup to the c chord. So you just >move the markup inside the \chormode

Re: chordmode and markup

2016-04-06 Thread Gianmaria Lari
>> Why this is not correct: >>\chordmode {c} \markup {test} [Carl] >When you do \chordmode{c}, you have ended the music expression containing >the c, so you can no longer attach a markup to the c chord. So you just >move the markup inside the \chormode music expression, where it is >attached to t

Re: chordmode and markup

2016-04-06 Thread Thomas Morley
2016-04-06 21:43 GMT+02:00 Simon Albrecht : > On 06.04.2016 19:45, Carl Sorensen wrote: >> >> \version "2.19.39" >> { >>\chordmode{c_\markup {test}} >> } > > > This is difficult to read, and there are much worse cases. Just put spaces > around the braces, in general. It’s a useful convention. >

Re: chordmode and markup

2016-04-06 Thread Simon Albrecht
On 06.04.2016 19:45, Carl Sorensen wrote: \version "2.19.39" { \chordmode{c_\markup {test}} } This is difficult to read, and there are much worse cases. Just put spaces around the braces, in general. It’s a useful convention. Yours, Simon ___ l

Re: chordmode and markup

2016-04-06 Thread Carl Sorensen
On 4/6/16 9:12 AM, "Gianmaria Lari" wrote: >Sorry to ask something probably trivial but reading manual and making >tests didn't help me. > >This works perfectly: >\version "2.19.39" >{ > a4 _\markup {test} >} > >but this doesn't: > >\version "2.19.39" >{ > \chordmode {c} \markup {test} >} > >Wh

Re: chordmode and markup

2016-04-06 Thread David Kastrup
Gianmaria Lari writes: > Sorry to ask something probably trivial but reading manual and making tests > didn't help me. > > This works perfectly: > \version "2.19.39" > { > a4 _\markup {test} > } > > but this doesn't: > > \version "2.19.39" > { > \chordmode {c} \markup {test} > } > > Why? How

chordmode and markup

2016-04-06 Thread Gianmaria Lari
Sorry to ask something probably trivial but reading manual and making tests didn't help me. This works perfectly: \version "2.19.39" { a4 _\markup {test} } but this doesn't: \version "2.19.39" { \chordmode {c} \markup {test} } Why? How can I write some text on the chords? g. ___