Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Werner LEMBERG
> The special font figures introduced with 2.24 breaks old typesets > using fonts provided by https://github.com/OpenLilyPondFonts > > Is there a way to switch to the old behaviour? Please provide a (small, working) example of the problem you encounter. Werner

Re: warning

2024-03-06 Thread ming tsang
Good morning Aaron, Thank you for pointing to theKeeping contexts alive in the lilypond manual. it mentions not to combine <<...>> with {...} use. Now I stick to one and the warning:cannot find context Voice=soprano message is gone. I now see the lyrics. Thank you very much for your help. Very much

Re: Transpose tab into label forms

2024-03-06 Thread Carl Sorensen
On Mon, Mar 4, 2024 at 5:37 AM achar wrote: > Indeed I use fret-diagram. Too bad. > THANKS Xavier. > > If you use Lilypond's automatic fret diagram functionality, the fret diagrams will be transposable, but the transposition may not be exactly what you would manually do for a transposition. You

Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Werner LEMBERG
> adapted sample from > https://lilypond.org/doc/v2.24/Documentation/bd/lily-a6a3b6ba.ly: > > \paper{ > #(define fonts > (set-global-fonts > #:music "paganini" > )) > } > \figures { > \set figuredBassPlusDirection = #RIGHT > <7\\ 6 4 2\+> <4\+ _-> <3 5\+ 3 > <6\\ 4 3> <9\\>

Tall bars in two-line music

2024-03-06 Thread David Wells
Hi, I'm working on typesetting some chants with two lines per staff and the resulting barlines are too tall. Tiny example: \version "2.24.3" \score { \relative c' { \time 9/4 \slurDown \override Staff.StaffSymbol.line-count = #2 f4(g) a f(g) a(g) g2 | f4(g) a f(g) a(g) g2 | \break

Re: Tall bars in two-line music

2024-03-06 Thread Michael Werner
Hi David, On Wed, Mar 6, 2024 at 10:00 AM David Wells < drwells.mailingl...@fastmail.com> wrote: > Hi, > > I'm working on typesetting some chants with two lines per staff and the > resulting barlines are too tall. Tiny example: > %< snip >% > Here, I expect the barlines to be the same height as

[HELP] RemoveAllEmptyStaves not working.

2024-03-06 Thread Lucas Cavalcanti
Hello. I'm writing a score of a song of which there are 16 measures of only rests in two instruments (the rhythm and the drumkit). I've used the RemoveAllEmptyStaves command to remove (obviously) the unnecessary staffs. However, the drumkit doesn't get removed like it should. The drumkit staff is i

Re: [HELP] RemoveAllEmptyStaves not working.

2024-03-06 Thread Kieren MacMillan
Hi Lucas, > I've used the RemoveAllEmptyStaves command to remove (obviously) the > unnecessary staffs. However, the drumkit doesn't get removed like it should. > The drumkit staff is independent by itself; it is not part of a group staff. > It is, however, a DrumStaff. > I've looked at the docum

Re: [HELP] RemoveAllEmptyStaves not working.

2024-03-06 Thread Lucas Cavalcanti
Hello, Kieren. Your suggestion did fix the issue. Thank you. Em qua., 6 de mar. de 2024 às 14:52, Kieren MacMillan < kie...@kierenmacmillan.info> escreveu: > Hi Lucas, > > > I've used the RemoveAllEmptyStaves command to remove (obviously) the > unnecessary staffs. However, the drumkit doesn't get

search and replace on all included files on compile

2024-03-06 Thread Michael Winter via LilyPond user discussion
I have a programmatically generated score and am now realizing that I want to make a small tweak to text markups that are throughout the score in multiple files that are included at multiple levels.  " 1↑"  replace with " 1" (e.g. remove the up arrow when it is preceded by a 1) Is it possible t

Re: search and replace on all included files on compile

2024-03-06 Thread Curt McDowell
Michael, You mentioned that the score is programmatically generated. If so, can you modify the generating program and regenerate the score? Otherwise, a more complete example would be nice. Are you trying to do a simple string replacement of a few (unicode) characters, or are you trying to repla

Re: search and replace on all included files on compile

2024-03-06 Thread Michael Winter via LilyPond user discussion
Thanks Curt, Unfortunately, I have already manually edited to the extent that tweaking the generating program would result in a lot of lost work. Typically I try not to edit post generation, but that was not possible in this particular case. I am on arch linux. And yes, I am sure it would be po

Re: search and replace on all included files on compile

2024-03-06 Thread Aaron Hill
On 2024-03-06 10:56 am, Michael Winter via LilyPond user discussion wrote: I have a programmatically generated score and am now realizing that I want to make a small tweak to text markups that are throughout the score in multiple files that are included at multiple levels.  " 1↑"  replace with

Re: search and replace on all included files on compile

2024-03-06 Thread Jean Abou Samra
Try ``` \version "2.24.2" \paper { #(add-text-replacements! '(("1↑" . "1"))) } { c'^\markup "1↑" } ``` Best, Jean signature.asc Description: This is a digitally signed message part

Re: search and replace on all included files on compile

2024-03-06 Thread Michael Winter via LilyPond user discussion
double thanks Mar 6, 2024, 14:36 by j...@abou-samra.fr: > > Try > > \version "2.24.2"\paper { #(add-text-replacements!'(("1↑" . "1")))}{ > c'^\markup "1↑" } > > Best, > > > Jean > >

Re: search and replace on all included files on compile

2024-03-06 Thread Michael Winter via LilyPond user discussion
perfect thanks! Mar 6, 2024, 14:35 by lilyp...@hillvisions.com: > On 2024-03-06 10:56 am, Michael Winter via LilyPond user discussion wrote: > >> I have a programmatically generated score and am now realizing that I want >> to make a small tweak to text markups that are throughout the score in

Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Martin Straeten
Thanks, that works fine > Please try the attached solution. > > >Werner > \version "2.24.0" > > \paper{ > #(define fonts (set-global-fonts #:music "paganini")) > > #(add-text-replacements! >`(("♭" . ,#{ \markup { \hspace #0.4 \raise #0.4 \smaller \smaller \flat } > #}) > ; add

Re: Tall bars in two-line music

2024-03-06 Thread David Wells
Great! Thank you so much! On Wed, Mar 6, 2024, at 11:35 AM, Michael Werner wrote: > Hi David, > > On Wed, Mar 6, 2024 at 10:00 AM David Wells > wrote: >> __ >> Hi, >> >> I'm working on typesetting some chants with two lines per staff and the >> resulting barlines are too tall. Tiny example: >

Tremolo/triplet problem

2024-03-06 Thread Ralph Palmer
Hi - Thanks for all your work and for your help to me over a number of years. I'm running into a problem I have no idea how to fix. I've looked at tremolos in the Notation Reference and in the Snippet Repository, but can't find a solution. I would appreciate any help. The first image is the resul

Re: Tremolo/triplet problem

2024-03-06 Thread kieren
Hi Ralph, Shouldn’t the d be 4. [not 4]? bf2.:6 c4.:3 d4:3 | Maybe I’m misunderstanding…? Cheers, Kieren.

Re: Tremolo/triplet problem

2024-03-06 Thread William Rehwinkel via LilyPond user discussion
Dear Ralph, I think this replicates how the original score looks: \version "2.25.7" \relative b { \clef alto \time 4/4 \tuplet 6/4 { b2.:8 } c4.*2/3:8 d4.*2/3:8 | c2.*2/3:8 b4.*2/3:8 a4.*2/3:8 } -William On 3/6/24 21:53, Ralph Palmer wrote: Hi - Thanks for all your work and for your h