lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Taille altérations sur les fondamentales des accords (chordRootNamer


From: M4rty
Subject: Re: Taille altérations sur les fondamentales des accords (chordRootNamer ?)
Date: Wed, 28 Apr 2021 04:14:06 -0700 (MST)

Merci Pierre !! Cela fonctionne !
J'ai réussi à faire exactement ce que je voulais avec le code ci dessous. Il
me reste juste à déplacer la nature d'accord légèrement vers la droite, je
vais continuer mes recherches ;-)

#(define (chordNamer pitch majmin)
        (let* ((alt (ly:pitch-alteration pitch)))
                (make-line-markup
                        (list
                                (make-simple-markup 
                                        (vector-ref #("C" "D" "E" "F" "G" "A" 
"B")
                                                (ly:pitch-notename pitch)))
                                (if (= alt 0)
                                        (markup "")
                                        
                                        (if (= alt FLAT)
                                        (make-line-markup
            (list
              (make-small-markup (make-raise-markup 1
                (markup #:musicglyph "accidentals.flat")))))
          ;; or handle adding the sharp symbol
          (make-line-markup
            (list
              (make-small-markup (make-raise-markup 1
                (markup #:musicglyph "accidentals.sharp")))))))))))



--
Sent from: http://lilypond-french-users.1298960.n2.nabble.com/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]