Re: tuplet slurs

2017-04-17 Thread Partitura Organum
On 12-2-2017 21:45, David Nalesnik wrote: Unfortunately, I am once again unable to get a patch successfully loaded with git-cl. I seem to lose my connection with codereview.appspot.com before all the base files can be loaded. I tried to keep the patch short by leaving documentation out, but i

Re: Metronome mark stem length

2017-04-17 Thread Simon Albrecht
Am 16.04.2017 um 19:29 schrieb Thomas Morley: #(define (sign x) (if (= x 0) 0 (if (< x 0) -1 1))) I can hardly imagine that default guile or any SRFI doesn’t already provide such a function – unfortunately I’m not well-versed enough to know… Anyone? Best, Simon ___

Re: Custom parenthesize ignoring Staves?

2017-04-17 Thread Simon Albrecht
Am 16.04.2017 um 14:25 schrieb Thomas Morley: How about below (Hijacking GridPoint and GridLine)? I am amazed. This has so much potential – thank you! Best, Simon ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/list

Re: flip clef, key and time signature [Re: flip clef at end of line only]

2017-04-17 Thread Marc Hohl
Hi Harm, Am 16.04.2017 um 21:25 schrieb Thomas Morley: 2017-04-16 17:54 GMT+02:00 Marc Hohl : [...] I tried to go one step further and include the key signature and time signature in my example, see the attached code. [...] Hi Marc, how about below? [...] (ly:grob-set-proper

Re: flip clef, key and time signature [Re: flip clef at end of line only]

2017-04-17 Thread Thomas Morley
2017-04-17 13:35 GMT+02:00 Marc Hohl : > Hi Harm, >> >> (ly:grob-set-property! grob 'space-alist >> '((staff-bar extra-space . 1)) > > > Ah, that's the way to go here – thanks a lot for your brilliant solution! > > Can you explain why you use before-line-breaking? Doe

Re: flip clef, key and time signature [Re: flip clef at end of line only]

2017-04-17 Thread Marc Hohl
Am 17.04.2017 um 13:47 schrieb Thomas Morley: 2017-04-17 13:35 GMT+02:00 Marc Hohl : Hi Harm, (ly:grob-set-property! grob 'space-alist '((staff-bar extra-space . 1)) Ah, that's the way to go here – thanks a lot for your brilliant solution! Can you explain wh

importing midifiles

2017-04-17 Thread Bert Van den Brink
Dear all I just subscribed to the mailing list and as a real beginner I have a question about importing midi. How to configure that? I already have the output of midi but maybe you need a totally different context for this. As I am blind lilypond is really a fantastic tool aspecially for me to co

Re: Metronome mark stem length

2017-04-17 Thread Andrew Bernard
Hi Simon, It's the signum function sgn of course, implemented in racket as sgn, but not in guile or the SRFI's with guile AFAIK. You could also say in Scheme: (define (sgn n) (cond ((negative? n) -1) ((positive? n) 1) (else 0))) A dozen ways to implement, of course, Would be

Re: Metronome mark stem length

2017-04-17 Thread Thomas Morley
2017-04-17 14:21 GMT+02:00 Andrew Bernard : > Hi Simon, > > It's the signum function sgn of course, Ofcourse. > implemented in racket as sgn, but > not in guile or the SRFI's with guile AFAIK. Don't know racket, but it's not in guile, afaik. > You could also say in Scheme: > > (define (sgn n) >

Re: importing midifiles

2017-04-17 Thread Colin Campbell
On 2017-04-17 06:18 AM, Bert Van den Brink wrote: Dear all I just subscribed to the mailing list and as a real beginner I have a question about importing midi. How to configure that? I already have the output of midi but maybe you need a totally different context for this. As I am blind lilypon

Re: tuplet slurs

2017-04-17 Thread David Nalesnik
On Mon, Apr 17, 2017 at 2:05 AM, Partitura Organum wrote: > > On 12-2-2017 21:45, David Nalesnik wrote: >> >> >> Unfortunately, I am once again unable to get a patch successfully >> loaded with git-cl. >> >> I seem to lose my connection with codereview.appspot.com before all >> the base files can

Re: importing midifiles

2017-04-17 Thread Martin Tarenskeen
On Mon, 17 Apr 2017, Bert Van den Brink wrote: Dear all I just subscribed to the mailing list and as a real beginner I have a question about importing midi. How to configure that? I already have the output of midi but maybe you need a totally different context for this. As I am blind lilypon

Re: placement of tuplet number on broken tuplet

2017-04-17 Thread Juan Cristóbal Cerrillo
Hello, > On Apr 12, 2017, at 8:38 AM, Thomas Morley wrote: > It's not clear to me what you want. Could you post an image faked by a > graphic program? Sorry if I was not very clear describing what I’m looking for. I wonder if there is a way of modifying the properties of the left and right s

\transpose and \quoteDuring

2017-04-17 Thread caagr98
It appears \transpose has no effect on \quoteDuring. \transposition can be abused to fix it, but that doesn't affect midi playback. How can I work around this? ``` \version "2.18.2" foo = {c' d' e' f'} \addQuote foo \foo << \new Staff \quoteDuring foo s1 \new Staff \transpose c c' \quoteDu

Re: \transpose and \quoteDuring

2017-04-17 Thread Kieren MacMillan
Hi, > It appears \transpose has no effect on \quoteDuring. Yes, this is the reality. (There’s a technical explanation somewhere on the list, but it does seem a puzzling restriction.) > How can I work around this? \version "2.18.2" foo = { c' d' e' f' } \addQuote "foo" \foo \addQuote "foo^8" \

Re: \transpose and \quoteDuring

2017-04-17 Thread Paul Scott
On Mon, Apr 17, 2017 at 05:49:36PM +0200, caag...@gmail.com wrote: > It appears \transpose has no effect on \quoteDuring. \transposition can be > abused to fix it, but that doesn't affect midi playback. How can I work > around this? > Add another quote for each transposition. See additions below

Re: \transpose and \quoteDuring

2017-04-17 Thread caagr98
Looks a bit silly, but I suppose it'll have to do. Thanks. On 04/17/17 17:55, Kieren MacMillan wrote: Hi, It appears \transpose has no effect on \quoteDuring. Yes, this is the reality. (There’s a technical explanation somewhere on the list, but it does seem a puzzling restriction.) How ca

Re: importing midifiles

2017-04-17 Thread Jacques Menu Muzhic
Hello Bert, musicsml2ly is also useful when scanning existing scores and exporting the result to MusicXML. JM > Le 17 avr. 2017 à 16:35, Martin Tarenskeen a écrit : > > > > On Mon, 17 Apr 2017, Bert Van den Brink wrote: > >> Dear all I just subscribed to the mailing list and as a real begi

Re: placement of tuplet number on broken tuplet

2017-04-17 Thread David Nalesnik
Hi Juan, On Mon, Apr 17, 2017 at 10:39 AM, Juan Cristóbal Cerrillo < jccerri...@gmail.com> wrote: > Hello, > > On Apr 12, 2017, at 8:38 AM, Thomas Morley > wrote: > > > It's not clear to me what you want. Could you post an image faked by a > graphic program? > > > Sorry if I was not very clear d

Re: placement of tuplet number on broken tuplet

2017-04-17 Thread Juan Cristóbal Cerrillo
> On Apr 17, 2017, at 11:24 AM, David Nalesnik wrote: > > Hi Juan, > > On Mon, Apr 17, 2017 at 10:39 AM, Juan Cristóbal Cerrillo > mailto:jccerri...@gmail.com>> wrote: > Hello, > >> On Apr 12, 2017, at 8:38 AM, Thomas Morley > > wrote: > >> It's not clear to

Re: tuplet slurs

2017-04-17 Thread Engraver
On 17-4-2017 16:04, David Nalesnik wrote: The goal would be to have it in LilyPond, of course. My reason for not putting this forward (now that I've found a way past the problem mentioned in the quote) is that it's a stub, a sketch, more suited to "unstable" releases than the impending 2.20 r

Problem with /accepts

2017-04-17 Thread Roman Stawski
Hello all I'm coming across a problem with context definitions: \version "2.19.59" \layout { \context { \Staff \accepts P } \context { \name P \alias Voice } } \new Staff { \new P \relative

Re: Problem with /accepts

2017-04-17 Thread Thomas Morley
2017-04-17 21:08 GMT+02:00 Roman Stawski : > Hello all > > > I'm coming across a problem with context definitions: > > \version "2.19.59" > \layout { > \context { > \Staff > \accepts P > } > \context { > \name P > \alia

How can I put \tempo "Adagio" closer to the score than a crescendo?

2017-04-17 Thread Son_V
It is: \layout { \context { \Score skipBars = ##t \dynamicUp } } PartPOneVoiceOne = \relative g' { \clef "treble" \key es \major \time 2/2 | % 1 \tempo "Adagio" g2 \p \< g4 \! g4 | % 2 That could put the crescendo at the same height of the following ones (that I think

Re: How can I put \tempo "Adagio" closer to the score than a crescendo?

2017-04-17 Thread David Nalesnik
Hi Son_V On Mon, Apr 17, 2017 at 4:41 PM, Son_V wrote: > It is: > > \layout { > \context { > \Score > skipBars = ##t > \dynamicUp > } > } > PartPOneVoiceOne = \relative g' { > \clef "treble" \key es \major \time 2/2 | % 1 >\tempo "Adagio" > > g2 \p \< g4 \! g4 | % 2 > > T

Re: How can I put \tempo "Adagio" closer to the score than a crescendo?

2017-04-17 Thread Simon Albrecht
Hi Vincenzo, judging only from the subject line: A metronome mark (a.k.a. tempo indication) shouldn’t be closer to the staff than a crescendo. That’s why LilyPond doesn’t do that. More can be said with more context. Best, Simon ___ lilypond-user ma

Re: How can I put \tempo "Adagio" closer to the score than a crescendo?

2017-04-17 Thread caagr98
I would recommend trying `outside-staff-priority`. The lower it is, the closer the object is to the staff. The default is 1000 on MetronomeMark and 250 on DynamicLineSpanner, so `\override MetronomeMark.outside-staff-priority = 249` or `\override DynamicLineSpanner.outside-staff-priority = 1001

Re: placement of tuplet number on broken tuplet

2017-04-17 Thread Andrew Bernard
Hi David, I am curious about what you say here. On 18 April 2017 at 02:24, David Nalesnik wrote: > > It isn't possible to shift the number within the bracket and have the gap > adjust, but you can lengthen the broken bracket: > > This is a function I use all the time, and it seems to work for m

Re: Problem with /accepts

2017-04-17 Thread Roman Stawski
On 17/04/2017 22:06, Thomas Morley wrote: 2017-04-17 21:08 GMT+02:00 Roman Stawski : I'm coming across a problem with context definitions: \version "2.19.59" \layout { \context { \Staff \accepts P } \context { \name P