Re: Can multiple notes be parenthesized as a group?

2014-04-13 Thread Conor Cook
Are the notes harmonic or melodic? On Apr 12, 2014, at 4:14 PM, Patrick or Cynthia Karl pck...@mac.com wrote: Consider: \version 2.18.0 \relative b' { c2 \parenthesize d c2 \parenthesize {d4 e} } The pdf output for the first measure is correct, a half-note

Re: Can multiple notes be parenthesized as a group?

2014-04-13 Thread Pierre Perol-Schneider
2014-04-12 23:14 GMT+02:00 Patrick or Cynthia Karl pck...@mac.com: Is there a way to do this? Try this : http://lsr.di.unimi.it/LSR/Item?id=902 HTH ~Pierre ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Make \upbow an empty command + Segmentation fault

2014-04-13 Thread Felix Janda
Ok, something like upbow = #(make-music 'PostEvents) works with 2.18.2. But I guess there is a less hacky solution. Felix ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: LilyPond-Book on Windows

2014-04-13 Thread Br. Samuel Springuel
I just tried rerunning lilypond-book after changing the temp directory to something simpler. That has run successfully, mostly. There were no errors thrown by either lilypond-book or pdflatex, but the snippet widths did not fit the page properly. The contents of the commandline follow:

Re: How to insert a number for fingering in embedded LilyPond?

2014-04-13 Thread David Kastrup
Jan-Peter Voigt jp.vo...@gmx.de writes: Hi Harm, I assume, you want to use this in some music-function ... (?) you can insert the displayed scheme-expression: %%% finger = #(define-event-function (parser location n)(integer?) (make-music 'FingeringEvent 'direction -1 'digit n)) No

Re: How to insert a number for fingering in embedded LilyPond?

2014-04-13 Thread David Kastrup
Thomas Morley thomasmorle...@gmail.com writes: Even #(display-scheme-music #{ -1 #}) displays correctly a FingeringEvent, meaning a post-event, the -, and the number, i.e. 1 not -1, is taken as the finger. Right now I've no idea to make it work other, than using your code or something very