Daniel Tonda Castillo-2 wrote
> Hello:I don't know if this has been discussed somewhere else, but is it
> possibleto use easynoteheads where the name of the note that appears
> inside is inspanish or another language?

I know this is an old post, but I was searching how to do the same thing and
found this thread and no full answer.
Following the example of  Lilypond documentation
<http://lilypond.org/doc/v2.19/Documentation/notation/note-heads#easy-notation-note-heads>
  
for using numbers instead of note names, I created the following snippet to
show custom note names:
#(define Note_name_engraver_pt
   (make-engraver
    (acknowledgers
     ((note-head-interface engraver grob source-engraver)
      (let* ((context (ly:translator-context engraver))
            (note-names 
              (vector '"dó" '"ré" '"mi" '"fá" '"sol" '"lá" '"si")))
        (ly:grob-set-property! grob 'note-names note-names))))))
Since I am not a programmer ,  there is certainly a better way to do that,
but at least it works for me. Kept here for reference and eventually helping
others.



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to