lilypond-user
[Top][All Lists]
Advanced

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

Re: Easier override access to shape note styles?


From: Trevor Bača
Subject: Re: Easier override access to shape note styles?
Date: Fri, 19 Jan 2007 08:13:53 -0600

On 1/19/07, Han-Wen Nienhuys <address@hidden> wrote:
Trevor Bača escreveu:
> Hi,
>
> It's easy to override a notehead to a harmonic diamond with the usual
> override syntax:
>
>  \once \override NoteHead #'style = #'harmonic
>
> On the other hand, the only way I can figure out to override a
> notehead to a filled diamond is with the  shapeNoteStyles setting ...
>
>  \once \set shapeNoteStyles = ##(mi mi mi mi mi mi mi)
>
> ... which is messier.
>
> Question: is there a way to access the shape note styles (like the
> filled diamon, tilted triangle, square, wedge, etc) with the usual
> override syntax instead with the shapeNoteStyles setting?

have you tried

  #'style= #'mi

?

Huh; you're right. I thought for sure I checked and that wasn't
possible. But it is.

%%% SHAPE NOTES WITH SIMPLE OVERRIDE %%%

\version "2.11.7"

\new Staff {
  \time 7/4
  \once \override NoteHead #'style = #'do
  c'4
  \once \override NoteHead #'style = #'re
  c'4
  \once \override NoteHead #'style = #'mi
  c'4
  \once \override NoteHead #'style = #'fa
  c'4
  % no sol shape exists
  s4
  \once \override NoteHead #'style = #'la
  c'4
  \once \override NoteHead #'style = #'ti
  c'4
}

%%% END %%%



--
Trevor Bača
address@hidden

reply via email to

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