Re: White Notation used by Charpentier

2011-12-22 Thread Klaus Föhl
Hello all,

Thank you for the implementation hints.

If anyone wants to know more about this notation, croches blanches is a good
search term.

And Charpentier also uses the single digit time signature 3 in such music.
\override Staff.TimeSignature #'style = #'single-digit
to implement.

Cheers
Klaus



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


Re: White Notation used by Charpentier

2011-12-21 Thread Xavier Scheuer
On 21 December 2011 15:14, Klaus Föhl klaus.fo...@uni-giessen.de wrote:
 Hello,

 These days I have seen Charpentier music using some white notation for shorter
 durations, in a nutshell minima noteheads with quaver flags. Wikipedia file
 http://en.wikipedia.org/wiki/File:Elevatio.png is showing an(other) example.
 What is the proper naming (I have been told white notation or weiße
 Notation, however I associate this with earlier mensural notation)? What is 
 the
 best/easiest way to get this written with Lilypond?

People were speaking about this Charpentier notation on the French
user mailing lists earlier this month.
http://lilypond-french-users.1298960.n2.nabble.com/Fonte-quot-Charpentier-quot-td7060560.html

You can tell LilyPond not to use black note heads
(credit Bertrand Bordage):

\override Score.NoteHead #'duration-log =
  #(lambda (grob)
 (min 1 (note-head::calc-duration-log grob)))

Cheers,
Xavier

PS: Pinging every French user involved in this discussion, in case they
would like to add something.

-- 
Xavier Scheuer x.sche...@gmail.com

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


Re: White Notation used by Charpentier

2011-12-21 Thread Caio Barros

 You can tell LilyPond not to use black note heads
 (credit Bertrand Bordage):


But in the example given there are some black noteheads as well. I think
the best solution would be to just override the notehead:

whiteHeadOn = {
\override NoteHead  #'stencil = #ly:text-interface::print
\override NoteHead #'text = #(markup #:musicglyph noteheads.s1 ) }

whiteHeadOff = {
\revert NoteHead  #'stencil
\revert NoteHead #'text
}

\relative c'' {
c4 d \whiteHeadOn e8 f g a | \whiteHeadOff b c b a g4 f
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user