Re: Changing distance between chord suffixes
Indeed chordNameSeparator is responsible for the space between suffixes. Solved as follows: \version "2.25.5" \chords{ des:maj7.5+ fis:7.5+.9+.11+ } \layout { \context { \ChordNames chordNameSeparator = #(make-hspace-markup 0.2) } } On Sat, 27 May 2023 at 17:59, Lib Lists wrote: > > Hello, > in the following example (see attached edited pdf) I'd like to reduce > the distance between the suffixes. It looks like the distance between > the root and the first suffix is smaller than the distances between > the following suffixes. > > \version "2.25.5" > \chords{ > des:maj7.5+ fis:7.5+.9+.11+ > } > > From what I understand the distance is caused by the (empty?) > chordNameSeparator, but I have no idea how to modify it. > > Thank you in advance for any hint, > Lib
Re: Fwd: running on a MacBook
Le samedi 27 mai 2023 à 12:14 -0700, Charlie Gibbs a écrit : > Hi, I'm Charlie, Donna's husband (and tech support). I use Lilypond > myself on my Linux box. I don't use helpers like Frescobaldi because as > a professional C programmer I feel right at home with naked Lilypond: > write source code with a text editor (usually vi), compile it, then > execute it (which in the case of Lilypond consists of playing the PDF > that comes out). > > That approach isn't quite as attractive to someone who isn't a computer > nerd, so I've been trying to get Frescobaldi working on Donna's Macbook. > It does a great job, although getting macOS to accept it took a bit of > persuasion. And somewhere along the line Frescobaldi just vanished, > which is what was getting Donna so upset. This is probably due to my > unfamiliarity with macOS application installation procedures. I got it > re-installed, though, and it seems to be staying around this time. I > had already installed Lilypond in my own hackish way and it's working > fine with or without Frescobaldi. > > So far, all is well, and Donna is having a good time creating sheet > music. Many thanks for a wonderful package. Thanks for your reply. That sounds like the installation of Frescobaldi was the problematic part rather than the installation of LilyPond. You indeed have to jump through some hoops on macOS due to the system not being convinced that the app isn't malware; see https://github.com/frescobaldi/frescobaldi/issues/1584 for more information on the issues. Best, Jean signature.asc Description: This is a digitally signed message part
Re: Annotated tuplet bracket
Hello Jean, This looks just like what I was looking for. regards, g.r.e. On Sat, May 27, 2023 at 7:07 PM Jean Abou Samra wrote: > Le samedi 27 mai 2023 à 17:17 -0400, Gregory Evans a écrit : > > Hi Everyone, > Yes Andrew, that excerpt is from Mahnkopf: good eye! > > Thanks Karim, your override is a good step in the right direction for me. > > So now I guess what I'm looking for is a way to query the tuplet bracket > for its direction while tweaking the tuplet number. > > Something like this? > > \version "2.25.5" > > #(define (duration-or-markup? x) >(or (ly:duration? x) >(markup? x))) > > addNote = > #(define-music-function (note tuplet-music) (duration-or-markup? ly:music?) >(unless (music-is-of-type? tuplet-music 'time-scaled-music) > (ly:music-warning tuplet-music "\\addNotes expected a tuplet")) >#{ > %% ugh, bug workaround -- see > https://gitlab.com/lilypond/lilypond/-/merge_requests/2024 > %% for a fix > \tweak TupletNumber.direction >#(lambda (grob) > (ly:grob-property (ly:grob-object grob 'bracket) 'direction)) > \tweak TupletNumber.text > #(grob-transformer >'text >(lambda (grob orig) > (let* ((dir (ly:grob-property grob 'direction)) > (note-markup (if (markup? note) > note > #{ \markup \parenthesize \fontsize #-4 \note > #note #dir #}))) >#{ \markup \put-adjacent #Y #dir > #orig > \raise #(* dir 0.7) \with-outline "" #note-markup #}))) > #tuplet-music >#}) > > { > \addNote 8 \tuplet 3/2 { c'8 8 8 } > \once \tupletDown > \addNote 16 \tuplet 3/2 { c'8 8 8 } > \addNote \markup \with-color "red" foobarbaz \tuplet 3/2 { c'8 8 8 } > } > > Regards, > > Jean > -- gregory rowland evans http://www.gregoryrowlandevans.com https://github.com/GregoryREvans https://soundcloud.com/gregory-rowland-evans