Re: Balloon engraver and annotations

2020-09-17 Thread Aaron Hill
On 2020-09-17 7:17 pm, Andrew Bernard wrote: I just want an annotation to a note with a line pointing to it. Thinking to use the balloon engraver, the example from the NR draws an ugly line next to the note, presumably a degenerate box: \new Voice \with { \consists "Balloon_engraver" } { d'4

Balloon engraver and annotations

2020-09-17 Thread Andrew Bernard
I just want an annotation to a note with a line pointing to it. Thinking to use the balloon engraver, the example from the NR draws an ugly line next to the note, presumably a degenerate box: \new Voice \with { \consists "Balloon_engraver" } { d'4 \balloonGrobText #'Stem #'(3 . 4) \markup {

Re: Error on 2.21.6

2020-09-17 Thread James.Correa
Harm, I found the problem. I am using the Metric Modulation Function by Peter Bjuhr and it is not working well with version 2.21. Why is causing trouble is beyond my knowledge of scheme. but I took it of and the score rendered without problems. Its really a shame because i like this function.

Re: Error on 2.21.6

2020-09-17 Thread James.Correa
Hi Thomas, I had done it but still get the same error... James --- James Correa Composer - guitarist - sound designer http://www.jamescorrea.net http://wp.ufpel.edu.br/labcomp/ Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ On Thursday, September 17, 2020 4:51 PM, Thomas

Re:

2020-09-17 Thread Stefan Thomas
Dear Lukas, thanks for Your reply. The file You've sent to me works exactly as I want it! Many thanks! The original code by Rune Zedeler, can be found here: https://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00136.html Am Do., 17. Sept. 2020 um 11:30 Uhr schrieb Lukas-Fabian Moser : >

Re: Error on 2.21.6

2020-09-17 Thread Thomas Morley
Am Do., 17. Sept. 2020 um 21:44 Uhr schrieb James.Correa : > > Hello all, > I updated to 2.21.5 and today to 2.21.6 and got this error in a score that > work fine on 2.20: > Follow log output: > = > Starting lilypond 2.21.6 [Amazonia2.ly]... > Processing

Error on 2.21.6

2020-09-17 Thread James.Correa
Hello all, I updated to 2.21.5 and today to 2.21.6 and got this error in a score that work fine on 2.20: Follow log output: = Starting lilypond 2.21.6 [Amazonia2.ly]... Processing `/home/james/Documents/Lilypond_scores/Catarina Ciranda/Catarina - Amazonia/Amazonia2.ly' Parsing...

Re:

2020-09-17 Thread Jonas Hahnfeld via LilyPond user discussion
Hi, Am Donnerstag, den 17.09.2020, 11:29 -0400 schrieb ming tsang: > Starting lilypond-windows.exe 2.21.4 [the-conflict-of-the-ages.ly]... > Processing `C:/Users/yming > tsang/Documents/CHOIR_2020/the-conflict-of-the-ages/the-conflict-of-the-ages.ly' > Parsing... > Interpreting music... >

[no subject]

2020-09-17 Thread ming tsang
Starting lilypond-windows.exe 2.21.4 [the-conflict-of-the-ages.ly]... Processing `C:/Users/yming tsang/Documents/CHOIR_2020/the-conflict-of-the-ages/ the-conflict-of-the-ages.ly' Parsing... Interpreting music... Preprocessing graphical objects... Interpreting music... fatal error: cannot

Re: Vertical slurs

2020-09-17 Thread Claire Meyer
Thank you very much ! Claire On Thu, Sep 17, 2020 at 2:16 PM Xavier Scheuer wrote: > On Thu, 17 Sep 2020 at 13:23, Claire Meyer < > claire.meyer.bourhis.lilyp...@gmail.com> wrote: > > > > Hi Lukas, > > > > Oh, yes, unfortunately, I need a normal (cross-staff) arpeggio as well. > I need

Re: Vertical slurs

2020-09-17 Thread Xavier Scheuer
On Thu, 17 Sep 2020 at 13:23, Claire Meyer < claire.meyer.bourhis.lilyp...@gmail.com> wrote: > > Hi Lukas, > > Oh, yes, unfortunately, I need a normal (cross-staff) arpeggio as well. I need something like a mix between the two following things : > > My code looks like : > > [...] > > So yeah, I

Re: Scheme predicative types

2020-09-17 Thread Aaron Hill
On 2020-09-17 4:01 am, Martín Rincón Botero wrote: Dear Aaron, thank you very much for your help! After using ly:duration->string for the tempo-unit, I'm still missing a way to have the new string tempo-unit string in "", so that I can display it as a \note in a \markup. How can I achieve

Re: Scheme predicative types

2020-09-17 Thread Martín Rincón Botero
Dear Aaron, thank you very much for your help! After using ly:duration->string for the tempo-unit, I'm still missing a way to have the new string tempo-unit string in "", so that I can display it as a \note in a \markup. How can I achieve that? Sorry for taking so much of your time! Best

Re: Scheme predicative types

2020-09-17 Thread Aaron Hill
On 2020-09-17 3:18 am, Lukas-Fabian Moser wrote: I think what triggered my feeling uncomfortable was just the slight mismatch between the name of the predicate (tempo?) and the actual tests it contained. Maybe some verbose thing like music-with-tempo-definition? would make things clearer. I

Re: Vertical slurs

2020-09-17 Thread Lukas-Fabian Moser
Hi Claire, Am 17.09.20 um 12:35 schrieb Claire Meyer: Hi David, Sorry for replying so late, things happened this week and I got caught up. Thanks for your answer, it does help some. I'm still stuck, though : image.png Either it's a "normal looking" arpeggio across the voices, or it's a

Re: Vertical slurs

2020-09-17 Thread Claire Meyer
Hi David, Sorry for replying so late, things happened this week and I got caught up. Thanks for your answer, it does help some. I'm still stuck, though : [image: image.png] Either it's a "normal looking" arpeggio across the voices, or it's a "parenthesis-looking" one, but I don't know how to have

Re: Unable to attach a bend to an \afterGrace note with the bend spanner

2020-09-17 Thread Federico Bruni
Il giorno gio 17 set 2020 alle 11:11, Thomas Morley ha scritto: the bend-engraver-thingies are not part of core LilyPond. Please post at least the link where you got it, otherwise you'll not get a lot of help ... Harm, the code is currently hosted on pagure.io:

Re: Scheme predicative types

2020-09-17 Thread Lukas-Fabian Moser
Hi Aaron, #(define (tempo? arg)   (and (ly:music? arg)    (not (null? (extract-typed-music arg 'tempo-change-event) Maybe I'm overly cautious, but I'd prefer this to be more specific so that it accepts only actual "\tempo ..."-constructs. For example: #(use-modules (scm display-lily))

Re: Unable to attach a bend to an \afterGrace note with the bend spanner

2020-09-17 Thread Aaron Hill
I know a lot of programming languages, but lisp dialects are not in my collection. Is there a simple function that could shorten this for me? Something like: addQuarterBend = #(define-event-function (mus)(ly:music?) #{ \afterGrace $mus \startBend {\once \hideNotes \transpose c cih $mus

Re:

2020-09-17 Thread Lukas-Fabian Moser
Hi Stefan, Am 17.09.20 um 10:02 schrieb Stefan Thomas: Dear community, the following code is very old, written by Rune Zedeler, but it is very useful. It allows You define a motive like: \motiv #'Stefan {c'8 d' c' d' e2} and later it can be used like this: \Stefan {e f g } and You will get

Re: Unable to attach a bend to an \afterGrace note with the bend spanner

2020-09-17 Thread Thomas Morley
Am Mo., 14. Sept. 2020 um 13:39 Uhr schrieb Kevin Nowaczyk : > > Andrew, > Here is a link to the output that is currently being produced. > > https://imgur.com/gallery/hJtl1eG > > The first three bends are what I want, but I cannot make the final one look > the same. This is because I am bending

Re: Re:

2020-09-17 Thread Michael Gerdau
> convert-ly should do the job. (See: > http://lilypond.org/doc/v2.19/Documentation/usage/invoking-convert_002dly.html) It does not for me - may be me being stupid though. Find attached the converted file. Kind regards, Michael > Le 17/09/2020 à 10:02, Stefan Thomas a écrit : > > \motiv

Re: Scheme predicative types

2020-09-17 Thread Aaron Hill
On 2020-09-17 1:30 am, Aaron Hill wrote: On 2020-09-17 1:14 am, Lukas-Fabian Moser wrote: Hi Aaron, The three forms  * \tempo 4 = 96  * \tempo Crazy 4 = 260-270  * \tempo "Sluggishly slow" are hardcoded as variants into the parser. My guess is that this might be hard (or impossible) to

Re: Scheme predicative types

2020-09-17 Thread Aaron Hill
On 2020-09-17 1:14 am, Lukas-Fabian Moser wrote: Hi Aaron, The three forms  * \tempo 4 = 96  * \tempo Crazy 4 = 260-270  * \tempo "Sluggishly slow" are hardcoded as variants into the parser. My guess is that this might be hard (or impossible) to accomplish in a music function. You just

Re:

2020-09-17 Thread Pierre Perol-Schneider
Hi Stefan, convert-ly should do the job. (See: http://lilypond.org/doc/v2.19/Documentation/usage/invoking-convert_002dly.html) Le 17/09/2020 à 10:02, Stefan Thomas a écrit : \motiv #'Stefan {c'8 d' c' d' e2} and later it can be used like this: \Stefan {e f g }

Re: Scheme predicative types

2020-09-17 Thread Lukas-Fabian Moser
Hi Aaron, The three forms  * \tempo 4 = 96  * \tempo Crazy 4 = 260-270  * \tempo "Sluggishly slow" are hardcoded as variants into the parser. My guess is that this might be hard (or impossible) to accomplish in a music function. You just need to be a little creative. That's what I hoped

[no subject]

2020-09-17 Thread Stefan Thomas
Dear community, the following code is very old, written by Rune Zedeler, but it is very useful. It allows You define a motive like: \motiv #'Stefan {c'8 d' c' d' e2} and later it can be used like this: \Stefan {e f g } and You will get {e8 f e f g2 } it can save a lot of typing. Unfortunately it

Re: Scheme predicative types

2020-09-17 Thread Aaron Hill
On 2020-09-17 12:08 am, Martín Rincón Botero wrote: Thank you Aaron for this explanation of the ly:prob-property! I see a function like *ly:duration->string*, is there any way to "convert" predicate types like ly:duration and number to markup? Strings are primitive markup, so you just need to

Re: Scheme predicative types

2020-09-17 Thread Martín Rincón Botero
Thank you Aaron for this explanation of the ly:prob-property! I see a function like *ly:duration->string*, is there any way to "convert" predicate types like ly:duration and number to markup? Regards, Martín. Am Do., 17. Sept. 2020 um 01:23 Uhr schrieb Aaron Hill < lilyp...@hillvisions.com>: >