Re: Cross-staff slurs

2014-04-12 Thread Phil Holmes
Assuming that you mean arpeggios in the sense of a chord spelt out as a series of notes, then there is an example of cross-staff slurs here: http://lilypond.org/doc/v2.18/Documentation/notation/common-notation-for-keyboards#changing-staff-manually -- Phil Holmes - Original Message -

Re: Cross-staff slurs

2014-04-12 Thread Graham King
On Sat, 2014-04-12 at 04:38 +, efa...@faswebdesign.com wrote: I'm trying to score a piano piece that has cross-staff slurs on arpeggios. I've searched the documentation andlooket at the snippets, but there’s nothing that’s clear enough (simple enough?) for me to understand. Can anyone

How to insert a number for fingering in embedded LilyPond?

2014-04-12 Thread Thomas Morley
Hi folks, regard the following code and terminal output \version 2.19.3 #(display-scheme-music #{ _2 #}) (make-music 'FingeringEvent 'direction -1 'digit 2) This is all as expected. Though, how to insert a number from a variable or procedure? The following fails:

Make \upbow an empty command + Segmentation fault

2014-04-12 Thread Felix Janda
Hi, say I have a violin part with bowing instructions in a variable. Now I want to use the same variable in the full orchestral score but the bowing marks should be suppressed. \upbow is treated by lilypond as an articulation, but the other articulations should be unaffected by the suppressing

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

2014-04-12 Thread Jan-Peter Voigt
Hi Thomas, 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)) { c''4\finger 2 } #(let ((n 4))

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

2014-04-12 Thread Jan-Peter Voigt
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)) { c''4\finger 2 } #(let ((n 4))

Re: How to catch extent of AccidentalPlacement?

2014-04-12 Thread David Nalesnik
Hi Harm, On Sun, Mar 16, 2014 at 7:06 AM, Thomas Morley thomasmorle...@gmail.comwrote: 2014-03-12 1:27 GMT+01:00 Thomas Morley thomasmorle...@gmail.com: Hi, for some function I need to know the extent/length of the AccidentalPlacement. With 2.16.2 I used to do something like:

Can multiple notes be parenthesized as a group?

2014-04-12 Thread Patrick or Cynthia Karl
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 c followed by a parenthesized half-note d. However, the second bar shows no evidence of

Re: How to catch extent of AccidentalPlacement?

2014-04-12 Thread Thomas Morley
Hi David, 2014-04-12 16:21 GMT+02:00 David Nalesnik david.nales...@gmail.com: [...] Forgive the late reply... No problem. :) Meanwhile I've found a solution myself, though, your coding below is much more elegant. What about something like this? \version 2.19.3 info = \override

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

2014-04-12 Thread Thomas Morley
Hi Jan-Peter, 2014-04-12 15:38 GMT+02:00 Jan-Peter Voigt jp.vo...@gmx.de: Hi Harm, call me Harm or Thomas. I don't mind. All are aliases :) I assume, you want to use this in some music-function ... (?) Exactly you can insert the displayed scheme-expression: %%% finger =