Re: Move chord name down onto staff?

2021-07-10 Thread Werner LEMBERG
>> I'm not sure how to move the chord names down so they are centered >> on the staff. Essentially I want the changes on an empty stave but >> I'm unclear on how to do that. [...] > > Here's one way to do this: > > > \version "2.20" > > harmony = \chordmode { a1:m s1 f1:m7 s1 } > tune

Re: error :GUILE signaled an error for the expression beginning here #

2021-07-10 Thread Aaron Hill
On 2021-07-10 8:46 pm, Aaron Hill wrote: On 2021-07-10 7:15 pm, ming tsang wrote: I copied the snippet from the lilypond snippet repository. There is no lilypond version information. Last I checked, the LSR was only up-to-date with 2.18.2. And confirmed at the bottom of the Contributing

Re: error :GUILE signaled an error for the expression beginning here #

2021-07-10 Thread Aaron Hill
On 2021-07-10 7:15 pm, ming tsang wrote: I copied the snippet from the lilypond snippet repository. There is no lilypond version information. Last I checked, the LSR was only up-to-date with 2.18.2. -- Aaron Hill

Re: Move chord name down onto staff?

2021-07-10 Thread Mark Probert
Thank you! You wrote: > \version "2.20" > > harmony = \chordmode { a1:m s1 f1:m7 s1 } > tune = { s1 s1 s1 s1 } > > chordsOnStaff = \with { > % Force the baselines to match. > \override VerticalAxisGroup.nonstaff-relatedstaff-spacing = > #'((basic-distance . 0) (minimum-distance . 0) >

Re: Move chord name down onto staff?

2021-07-10 Thread Aaron Hill
On 2021-07-10 6:06 pm, Mark Probert wrote: I'm not sure how to move the chord names down so they are centered on the staff. Essentially I want the changes on an empty stave but I'm unclear on how to do that. [...] Here's one way to do this: \version "2.20" harmony = \chordmode { a1:m

Move chord name down onto staff?

2021-07-10 Thread Mark Probert
Hi, all. I'm not sure how to move the chord names down so they are centered on the staff. Essentially I want the changes on an empty stave but I'm unclear on how to do that. TIA .. mark. -- \version "2.20" harmony = \chordmode { a1:m s1 f1:m7 s1 } tune = { s1 s1 s1 s1 } \score { <<

Re: wront type for argument: on \note

2021-07-10 Thread ming tsang
Thank you both: I will definitely run convert from now on. yMing Tsang Sent from my iPhone > On Jul 9, 2021, at 7:00 PM, David Kastrup wrote: > > Aaron Hill writes: > >>> On 2021-07-09 1:22 pm, ming tsang wrote: >>> I try to run the following lilypond code. >>> \version "2.23.3" >>> \markup

Re: Indentation of 3rd line of music (instead of the default first one)

2021-07-10 Thread Peter Struys
That solves the problem indeed. Many thanks for yr fast reply. Original message From: Knute Snortum Date: 10/07/2021 16:12 (GMT+01:00) To: Peter Struys Cc: lilypond-user@gnu.org Subject: Re: Indentation of 3rd line of music (instead of the default first one) I would use a

Re: Indentation of 3rd line of music (instead of the default first one)

2021-07-10 Thread Peter Struys
Perfect. Many thanks !! Original message From: Leo Correia de Verdier Date: 10/07/2021 16:09 (GMT+01:00) To: Peter Struys Cc: lilypond-user@gnu.org Subject: Re: Indentation of 3rd line of music (instead of the default first one) There is this snippet at the lsr that could

Re: Indentation of 3rd line of music (instead of the default first one)

2021-07-10 Thread Knute Snortum
I would use a second \score block for the trio. %%% \version "2.22.1" \score { \new Staff { \repeat unfold 16 { c'4 c' c' c' } } } \score { \new Staff \with { instrumentName = "TRIO" } { \repeat unfold 16 { c'4 c' c' c' } } } %%% -- Knute Snortum On Sat, Jul 10, 2021 at 7:01

Re: Indentation of 3rd line of music (instead of the default first one)

2021-07-10 Thread Leo Correia de Verdier
There is this snippet at the lsr that could solve the problem for you: https://lsr.di.unimi.it/LSR/Item?id=1098 > 10 juli 2021 kl. 13:16 skrev Peter Struys : > > Newbie question. > Is it possible to indent another line than the default first line ? > (in this attached sample the third line) >

Indentation of 3rd line of music (instead of the default first one)

2021-07-10 Thread Peter Struys
Newbie question. Is it possible to indent another line than the default first line ? (in this attached sample the third line) Many thanks