Re: Uninstall / reinstall LilyPond 2.23.9 (and, by the way, Frescobaldi)

2022-05-23 Thread Knute Snortum
On Mon, May 23, 2022 at 2:44 PM Ralph Palmer wrote: > > Greetings - > > I'm still having trouble. My laptop was worked on recently, and the > technician renamed my root account from rpalmer to ralph. All my data and > programs were also gone. I did not realize the implications of the root name

Uninstall / reinstall LilyPond 2.23.9 (and, by the way, Frescobaldi)

2022-05-23 Thread Ralph Palmer
Greetings - I'm still having trouble. My laptop was worked on recently, and the technician renamed my root account from rpalmer to ralph. All my data and programs were also gone. I did not realize the implications of the root name change, so I did a full restore from my last backup. The restore wa

Re: printing "a 2" at the beginning of staves automatically

2022-05-23 Thread Werner LEMBERG
>> * Contrary to Valentin's solution, the first 'a 2' text is not >> left-aligned to the left edge of the note head. This is >> especially visible with whole notes (see attached image). [...] > > See the attached file, fixing that problem and making it per-voice. Thanks, will test soon in m

Re: Conflicting RehearsalMarks

2022-05-23 Thread Thomas Morley
Am Mo., 23. Mai 2022 um 14:59 Uhr schrieb David Kastrup : > > Thomas Morley writes: > > > Hi, > > > > consider the code below > > > > \layout { > > \context { > > \StaffGroup > > \consists "Mark_engraver" > > \consists "Staff_collecting_engraver" > > } > > \context { > > \Sco

Re: Conflicting RehearsalMarks

2022-05-23 Thread David Kastrup
Thomas Morley writes: > Hi, > > consider the code below > > \layout { > \context { > \StaffGroup > \consists "Mark_engraver" > \consists "Staff_collecting_engraver" > } > \context { > \Score > \remove "Mark_engraver" > \remove "Staff_collecting_engraver" > } > } >

Re: Conflicting RehearsalMarks

2022-05-23 Thread Thomas Morley
Am Mo., 23. Mai 2022 um 14:28 Uhr schrieb Thomas Morley : > > Hi, > > consider the code below > > \layout { > \context { > \StaffGroup > \consists "Mark_engraver" > \consists "Staff_collecting_engraver" > } > \context { > \Score > \remove "Mark_engraver" > \remove "Sta

Re: Conflicting RehearsalMarks

2022-05-23 Thread Jean Abou Samra
Le 23/05/2022 à 14:28, Thomas Morley a écrit : Hi, consider the code below \layout { \context { \StaffGroup \consists "Mark_engraver" \consists "Staff_collecting_engraver" } \context { \Score \remove "Mark_engraver" \remove "Staff_collecting_engraver" }

Conflicting RehearsalMarks

2022-05-23 Thread Thomas Morley
Hi, consider the code below \layout { \context { \StaffGroup \consists "Mark_engraver" \consists "Staff_collecting_engraver" } \context { \Score \remove "Mark_engraver" \remove "Staff_collecting_engraver" } } << \new StaffGroup << \new Staff { \mark "foo" R1 }

Re: `StaffGroup` prevents articulation shifted under time signature

2022-05-23 Thread Werner LEMBERG
> dynamicLengthOff = { > \override DynamicText.extra-spacing-width = #'(+inf.0 . -inf.0) > \override DynamicText.extra-spacing-height = #'(0 . 0) > } Nice idea, thanks! Werner

Re: `StaffGroup` prevents articulation shifted under time signature

2022-05-23 Thread Werner LEMBERG
>> The following example >> >> ``` >> << >>\new Staff { f'1 } >>\new Staff { f'1 \tweak X-offset #-5 \pp } >> \new StaffGroup << >>\new Staff { f'1 } >>\new Staff { f'1 \tweak X-offset #-5 \pp } >> ``` >> >> shows that I can't move the 'pp' to sit under the time signature if >> I us

Re: `StaffGroup` prevents articulation shifted under time signature

2022-05-23 Thread David Kastrup
Werner LEMBERG writes: > [LilyPond version 2.23.9] > > The following example > > ``` > << > \new Staff { f'1 } > \new Staff { f'1 \tweak X-offset #-5 \pp } >>> > > \new StaffGroup << > \new Staff { f'1 } > \new Staff { f'1 \tweak X-offset #-5 \pp } >>> > ``` > > shows that I can't move th

Re: `StaffGroup` prevents articulation shifted under time signature

2022-05-23 Thread Jean Abou Samra
Le 23/05/2022 à 12:32, Werner LEMBERG a écrit : [LilyPond version 2.23.9] The following example ``` << \new Staff { f'1 } \new Staff { f'1 \tweak X-offset #-5 \pp } \new StaffGroup << \new Staff { f'1 } \new Staff { f'1 \tweak X-offset #-5 \pp } ``` shows that I can't move the 'pp'

`StaffGroup` prevents articulation shifted under time signature

2022-05-23 Thread Werner LEMBERG
[LilyPond version 2.23.9] The following example ``` << \new Staff { f'1 } \new Staff { f'1 \tweak X-offset #-5 \pp } >> \new StaffGroup << \new Staff { f'1 } \new Staff { f'1 \tweak X-offset #-5 \pp } >> ``` shows that I can't move the 'pp' to sit under the time signature if I use `Sta

Re: printing "a 2" at the beginning of staves automatically

2022-05-23 Thread Jean Abou Samra
Le 23/05/2022 à 08:55, Werner LEMBERG a écrit : Aaand some nits :-) * Contrary to Valentin's solution, the first 'a 2' text is not left-aligned to the left edge of the note head. This is especially visible with whole notes (see attached image). It is not clear to me why this is so, giv

Re: printing "a 2" at the beginning of staves automatically

2022-05-23 Thread Jean Abou Samra
Le 23/05/2022 à 12:26, Jean Abou Samra a écrit : See the attached file, fixing that problem and making it per-voice. Now with the attachment … \version "2.23.9" #(set-object-property! 'annotationText 'translation-type? markup?) #(define (Annotation_spanner_engraver context) (let* ((las

Re: [Frescobaldi] Problems with Frescobaldi and LilyPond

2022-05-23 Thread Kevin Cole
I guess I would have gone the other way and renamed the user rpalmer again... (The following may not be the BEST way to do it but gets the job done.) sudo -i for x in group* gshadow* passwd* shadow* subgid* subuid* do perl -p -i -e "s/ralph/rpalmer/g;" $x done mv /home/ralph /home/rpalmer exit

Re: printing "a 2" at the beginning of staves automatically

2022-05-23 Thread Valentin Petzel
True, using a spanner like that is probably much better than what I’ve hacked together there. Should have though of that instead of doing weird stuff ... Valentin Am Sonntag, 22. Mai 2022, 14:06:27 CEST schrieb Jean Abou Samra: > Le 22/05/2022 à 10:52, Valentin Petzel a écrit : > > Hello Werner,

Re: printing "a 2" at the beginning of staves automatically

2022-05-23 Thread Werner LEMBERG
>>> Meanwhile, how about using a spanner rather than an item? See >>> attached. > > Aaand some nits :-) I forget another one. * If you look at the attached image (from 'Carmina burana') it probably makes sense to have the staff annotation engraver actually live in the Voice context. We sh