Hi Joram, 

Noeck wrote
> Can I also make the accidentals in the superscript
> smaller or shift them?

there is no function to be redefined, such as chordRootNamer or
chordNoteNamer. Defining lots of exceptions won't be funny either. 

In chord-name.scm, there is a function 

---------------------------------------------------------------
(define-public (alteration->text-accidental-markup alteration)
   (make-raise-markup
    (if (= alteration FLAT)
        0.3
        0.6)
    (make-musicglyph-markup
     (assoc-get alteration standard-alteration-glyph-name-alist ""))))
---------------------------------------------------------------

that you could replace by

---------------------------------------------------------------
(define-public (alteration->text-accidental-markup alteration)
  (make-smaller-markup
   (make-raise-markup
    (if (= alteration FLAT)
        0.3
        0.6)
    (make-musicglyph-markup
     (assoc-get alteration standard-alteration-glyph-name-alist "")))))
---------------------------------------------------------------

but I don't know how to tweak that without changing your whole LP
installation.

Cheers, 
Klaus





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/chord-names-tp199985p200068.html
Sent from the User mailing list archive at Nabble.com.

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to