Re: broken slurs shorter than ties

2023-06-16 Thread Werner LEMBERG
> Cough, cough. I have found this to work: > > ``` > \version "2.25.5" > > #(set-default-paper-size "a6") > > { > d'4 e' g' d' | > d'4 e' g' d'( ~ | > \once \override Staff.KeySignature.break-visibility = #all-invisible > \break > d'4) e' f' d' | > d'4 e' f' d' | > } > ``` Very int

Re: Lilypond 2.24.1 can't compile any score

2023-06-16 Thread Joshua Armenta
Found the issue. Something, somewhere messed up the Ghostscript permissions. I ran: sudo chown -R `whoami` /usr/local/share/doc/ghostscript brew link --overwrite ghostscript Which fixed the issue on the following invocation of lilypond. Thanks for the —verbose hint! -- Josh Armenta "If I c

Re: Lilypond 2.24.1 can't compile any score

2023-06-16 Thread Joshua Armenta
Looks like it’s a Ghostscript issue: joshuaarmenta@MacBook-Pro Documents % lilypond --verbose /Users/joshuaarmenta/Google\ Drive/Active\ Scores/Canon\ Good\ Friday/Josh-Armenta-b-1989-Canon-for-Good-Friday.ly > lily-output.txt Log level set to 287 GNU LilyPond 2.24.1 (running Guile 3.0) Reloc

Re: Lilypond 2.24.1 can't compile any score

2023-06-16 Thread Joshua Armenta
I've converted all my files using convert-ly, reinstalled lilypond and reinstalled frescobaldi. i've tried running LY direct from the command line with the same result. On Fri, Jun 16, 2023 at 10:35 AM Joshua Armenta wrote: > After upgrading from 2.20 to 2.24 to get graphical notation, any score

Re: Lilypond 2.24.1 can't compile any score

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 10:35 -0700, Joshua Armenta a écrit : > After upgrading from 2.20 to 2.24 to get graphical notation, any score I try > to run in Lilypond has this error: > > warning: `(gs -q -dNODISPLAY -dNOSAFER -dNOPAUSE -dBATCH > -dAutoRotatePages=/None -dPrinted=false > /var/fold

Lilypond 2.24.1 can't compile any score

2023-06-16 Thread Joshua Armenta
After upgrading from 2.20 to 2.24 to get graphical notation, any score I try to run in Lilypond has this error: warning: `(gs -q -dNODISPLAY -dNOSAFER -dNOPAUSE -dBATCH -dAutoRotatePages=/None -dPrinted=false /var/folders/by/s5_hp0hn4kggn166ykcm1h08gn/T//lilypond-tmp-9941977)' failed (256) /u

Re: \uppercase function

2023-06-16 Thread Kieren MacMillan
Hi Jean, > \markup uppercase = > \markup \with-string-transformer > #(lambda (layout props str) (string-upcase str)) > \etc That’s what I’m talkin’ about! :) Thanks, Kieren. __ My work day may look different than your work day. Please do not feel

Re: \uppercase function

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 15:13 +0100, Mark Knoop a écrit : > Wait, I see there is already a \fontCaps command - does that not work? That's small caps, not normal caps. signature.asc Description: This is a digitally signed message part

Re: \uppercase function

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 09:41 -0400, Kieren MacMillan a écrit : > Hi all! > > Anyone have a good \uppercase function they could share? > > I tried to make one, and it doesn’t throw an error, but also doesn’t work: > > ``` > \version "2.25.2" > > #(define-markup-command (uppercase layout pro

Re: \uppercase function

2023-06-16 Thread Mark Knoop
Wait, I see there is already a \fontCaps command - does that not work? At 15:10 on 16 Jun 2023, Mark Knoop wrote: > Not offhand, but I'd start with make-small-caps in > define-markup-commands.scm and strip out the is-lower logic. > At 09:41 on 16 Jun 2023, Kieren MacMillan wrote: >> Hi all! >> A

Re: \uppercase function

2023-06-16 Thread Mark Knoop
Not offhand, but I'd start with make-small-caps in define-markup-commands.scm and strip out the is-lower logic. At 09:41 on 16 Jun 2023, Kieren MacMillan wrote: > Hi all! > Anyone have a good \uppercase function they could share? > I tried to make one, and it doesn’t throw an error, but also doe

\uppercase function

2023-06-16 Thread Kieren MacMillan
Hi all! Anyone have a good \uppercase function they could share? I tried to make one, and it doesn’t throw an error, but also doesn’t work: \version "2.25.2" #(define-markup-command (uppercase layout props arg) (markup?) (interpret-markup layout props (string-upcase (markup->string arg

Re: Displaying StaffGroupBar after tweak

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 14:59 +0200, Karim Haddad a écrit : > I customize staffs using the following tweak: > [...] > > Whenever there is a pagebreak (explicit or automatic), the StaffGroupBar > disappears. > I know i am missing something here. > Here is a somehow not so moderate MWE (sorry):

Displaying StaffGroupBar after tweak

2023-06-16 Thread Karim Haddad
Dear All, I have this problem: I customize staffs using the following tweak: kHide = {\hideNotes \stopStaff \override TupletBracket.transparent=##t \override TupletNumber.transparent=##t \override Staff.BarLine.transparent=##t \override Sta

Re: TrillSpan help

2023-06-16 Thread Mark Probert
Thank you! ..m. > On 16 Jun 2023, at 19:40, Kieren MacMillan > wrote: > > Hi Mark, > >> Is there a way of finding out about the various objects and their names? > > https://lilypond.org/doc/v2.25/Documentation/internals/all-layout-objects > > Hope that helps! > Kieren. > ___

Re: TrillSpan help

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 19:36 +1000, Mark Probert a écrit : > > Many thanks, Jean. > > I kinda knew there would be a simple solution, but I had trouble finding > “TrillSpanner.” Is there a way of finding out about the various objects and > their names? Sure. Method 1: you look at the docume

Re: TrillSpan help

2023-06-16 Thread Kieren MacMillan
Hi Mark, > Is there a way of finding out about the various objects and their names? https://lilypond.org/doc/v2.25/Documentation/internals/all-layout-objects Hope that helps! Kieren. __ My work day may look different than your work day. Please do not

Re: TrillSpan help

2023-06-16 Thread Mark Probert
Many thanks, Jean. I kinda knew there would be a simple solution, but I had trouble finding “TrillSpanner.” Is there a way of finding out about the various objects and their names? ..m. > On 16 Jun 2023, at 18:39, Jean Abou Samra wrote: > > Le vendredi 16 juin 2023 à 17:54 +1000, Mark Pro

Re: broken slurs shorter than ties

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 05:37 +, Werner LEMBERG a écrit : > In my opinion, the worst flaw of LilyPond's otherwise excellent > formatting, a flaw that essentially everyone encounters rather > quickly, is that broken slurs are almost always shorter than broken > ties (it should be exactly the

Re: Moving tempo-markup

2023-06-16 Thread Johannes Roeßler
works perfectly fine, thx Jean |\once \override Score.MetronomeMark.padding = 5|

Re: Moving tempo-markup

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 08:53 +0200, Johannes Roeßler a écrit : > > Hi, > > how can I raise the tempo markup to get some space in case I have other > markups in place: > > ``` > \version "2.24.0" > {\tempo "Andante" c'4^\markup \italic "mezza voce" c' c' c' } > ``` Try adding some p

Re: TrillSpan help

2023-06-16 Thread Jean Abou Samra
Le vendredi 16 juin 2023 à 17:54 +1000, Mark Probert a écrit : > Hi. > > According to the manual "A hairpin ending on a downbeat will stop at > the preceding barline." By default, I've found this to be true of > \startTrillSpan \stopTrillSpan as well. > > With hairpins there is an override (H

TrillSpan help

2023-06-16 Thread Mark Probert
Hi. According to the manual "A hairpin ending on a downbeat will stop at the preceding barline." By default, I've found this to be true of \startTrillSpan \stopTrillSpan as well. With hairpins there is an override (Hairpin.to-barline) that allows for the final note to be included. Does there