Re: My finances.

2018-11-08 Thread Karlin High
On 11/8/2018 5:40 PM, Thomas Morley wrote: @ all: I'd like to invite you to consider joining (if not already done). And if anyone is wondering how: "In Europe's EURO zone [...] SEPA transfers are usually easiest (accoun

Re: My finances.

2018-11-08 Thread Thomas Morley
Am Mi., 27. Juni 2018 um 22:31 Uhr schrieb David Kastrup : > > > Hi folks, > > I've been afraid of looking at my bank account for the past months but > finally had to do so. For the last three months, the payments from > LilyPond users were stable: one paying €100 monthly, one paying €75 > monthly

Re: markup->string and user markup commands

2018-11-08 Thread Thomas Morley
Am Do., 8. Nov. 2018 um 21:00 Uhr schrieb Jérôme Plût : > > > #(begin > ; after http://lsr.di.unimi.it/LSR/Snippet?id=969 > (define-markup-command (with-background layout props color arg) (color? > markup?) >(let* ((stencil (interpret-markup layout props arg)) > (X-ext (ly:stencil-ex

Adding text (with horizontal padding) to slur

2018-11-08 Thread Pablo Cordal
Hi, Finally I figured it out myself. This is function modified to incorporate a horizontal padding: annotatedSlur = #(define-music-function (parser location paddingVertical paddingHorizontal texto) (number? number? markup?) #{ \once \override Slur.after-line-breaking = #(lambda (grob

markup->string and user markup commands

2018-11-08 Thread Jérôme Plût
#(begin ; after http://lsr.di.unimi.it/LSR/Snippet?id=969 (define-markup-command (with-background layout props color arg) (color? markup?) (let* ((stencil (interpret-markup layout props arg)) (X-ext (ly:stencil-extent stencil X)) (Y-ext (ly:stencil-extent stencil Y)))

Re: Adding text to slurs

2018-11-08 Thread Urs Liska
Am 08.11.18 um 16:00 schrieb pablocordal: Hi everyone! I really have a special need with this function we have been talking about: annotatedSlur = #(define-music-function (parser location padding text) (number? markup?) #{ \once \override Slur.after-line-breaking = #(lambda (g

Re: Modified slur stencil with added markup

2018-11-08 Thread Pablo Cordal
Hi again! Can I propose a small modification in the "annotated slur" funcion? annotatedSlur = #(define-music-function (parser location padding text) (number? markup?) #{ \once \override Slur.after-line-breaking = #(lambda (grob) (let* ((stencil (ly:slur::print grob))

Re: Modified slur stencil with added markup

2018-11-08 Thread Pablo Cordal
Hi again! Can I propose a small modification in this funcion? annotatedSlur = #(define-music-function (parser location padding text) (number? markup?) #{ \once \override Slur.after-line-breaking = #(lambda (grob) (let* ((stencil (ly:slur::print grob)) (dir (

Re: Adding text to slurs

2018-11-08 Thread pablocordal
Hi everyone! I really have a special need with this function we have been talking about: annotatedSlur = #(define-music-function (parser location padding text) (number? markup?) #{ \once \override Slur.after-line-breaking = #(lambda (grob) (let* ((stencil (ly:slur::

Re: \goto for Lilypond

2018-11-08 Thread Kieren MacMillan
Hi Jérôme, > Oh! I guess you meant, "Why don't I cue directly from the > oboe/bassoon/etc. voice"? Yes. =) > In that case, the reason is that I generally > only need to redo the trombone/horn parts (instead of the full 20-25 > voices in the orchestra...), so I don't have full oboe/etc. voices t

Re: \goto for Lilypond

2018-11-08 Thread Jérôme Plût
Sexto Idus Octobres MMXVIII scripsit Jérôme Plût : > Sexto Idus Octobres MMXVIII scripsit Kieren MacMillan : > > Hi Jérôme, > > > > > and cues in another variable: > > > > May I ask why you don’t use the built-in cue system? I’ve found it very > > useful and flexible. > > I do use it! I have an

Re: \goto for Lilypond

2018-11-08 Thread Jérôme Plût
Sexto Idus Octobres MMXVIII scripsit Kieren MacMillan : > Hi Jérôme, > > > and cues in another variable: > > May I ask why you don’t use the built-in cue system? I’ve found it very > useful and flexible. I do use it! I have another set of macros (not shown here) that basically wrap \cueDuringWi

Re: \goto for Lilypond

2018-11-08 Thread Kieren MacMillan
Hi Jérôme, > and cues in another variable: May I ask why you don’t use the built-in cue system? I’ve found it very useful and flexible. > Now I can write the previous score in this way: > > global = { > \at-bar 1 { \time 4/4 \tempo "..." } > \at-bar 48 { \mark "A" } > \at-bar 86 { \mark "B"

Re: \goto for Lilypond

2018-11-08 Thread Jérôme Plût
> cues = { > % I don't know about you, but I like having *a lot* of cues to > % follow. I suspect that being a former pianist, I find it easier > % than most brass colleagues to read several lines at once? > R1*15 % bar 16 > \relative { fis'1^"Fl." } % bar 17 > R1*24 > \relative { c''

\goto for Lilypond

2018-11-08 Thread Jérôme Plût
I quite often find myself transcribing a part of a big orchestral score from IMSLP (e.g., putting the horns in F transposition and the trombones in bass clef -- our brass section is not too good at exotic sightreading). For this I put the global structure of a movement in a \global variable, such

Re: Adjusting angle of glissando

2018-11-08 Thread Andrew Bernard
Hi Mark, Thanks! I also just discovered this approach: \once \override Glissando.bound-details.left.Y = #-3.8 \once \override Glissando.bound-details.right.Y = #-4.2 On Thu, 8 Nov 2018 at 20:40, Mark Knoop wrote: > You want something like > > -\tweak extra-dy #-1 \glissando > ___

Re: Reading global variables from Scheme [documentation request?]

2018-11-08 Thread Thomas Morley
Am Do., 8. Nov. 2018 um 10:10 Uhr schrieb David Kastrup : > > Jérôme Plût writes: > > > I would like to *read*, from within a Scheme function > > (define-music-function), the values of variables such as > > Score.currentBarNumber or Score.alternativeNumberingStyle. > > > > I can have a guess that

Re: Adjusting angle of glissando

2018-11-08 Thread Mark Knoop
At 20:31 on 08 Nov 2018, Andrew Bernard wrote: >My colleague wants a glissando on an angle down from the first note to >the last in the typical example of his work attached. > >How can one adjust the endpoints of a glissando? I looked everywhere >to no avail. You want something like -\tweak extra

Adjusting angle of glissando

2018-11-08 Thread Andrew Bernard
My colleague wants a glissando on an angle down from the first note to the last in the typical example of his work attached. How can one adjust the endpoints of a glissando? I looked everywhere to no avail. While we are here, I am told that this is stock standard and common notation. Is it actual

Re: Reading global variables from Scheme [documentation request?]

2018-11-08 Thread David Kastrup
Jérôme Plût writes: > I would like to *read*, from within a Scheme function > (define-music-function), the values of variables such as > Score.currentBarNumber or Score.alternativeNumberingStyle. > > I can have a guess that this is possible with such functions as > ly:context-property or ly:outpu

Reading global variables from Scheme [documentation request?]

2018-11-08 Thread Jérôme Plût
I would like to *read*, from within a Scheme function (define-music-function), the values of variables such as Score.currentBarNumber or Score.alternativeNumberingStyle. I can have a guess that this is possible with such functions as ly:context-property or ly:output-def-lookup, but the documentati