Re: lyric extender and rest

2016-09-04 Thread Thomas Morley
2016-09-04 11:26 GMT+02:00 arnepe : > hello list, > > when - after a syllable with lyrics extender - follows a part starting with > a "rest" in one of the stanzas (using \notemode within \lyricmode) the > extender-line does not stop before the "rest", but underlines it as

Re: lyric extender and rest

2016-09-04 Thread arnepe
The 4-language version of A. Adnan Saygun's "Yunus Emre" has those rests in the lyrics, accompanying lots of cue notes for the various languages. I copied this idea for a bilingual version of Johan Helmich Roman's "Te Deum" which will be performed in Berlin this December, and it is not decided yet

Re: to make a function with argument list or vector

2016-09-04 Thread Оксана Крымина
Great! It works! It works! Thank You! 2016-09-04 20:15 GMT+03:00, Simon Albrecht : > Hi Oxana, > > I _guess_ the reason it doesn’t work is because the parser doesn’t > accept a Scheme expression instead of the number after \repeat unfold. > The solution is creating music

Re: v2.19.47 on Mac x86

2016-09-04 Thread Jacques Menu Muzhic
Hello Andrew, I run El Capitan 10.11.6: menu@macbookprojm:~/Documents/LaTeX/PartitionsLilypond > uname -a Darwin macbookprojm 15.6.0 Darwin Kernel Version 15.6.0: Mon Aug 29 20:21:34 PDT 2016; root:xnu-3248.60.11~1/RELEASE_X86_64 x86_64 and I get: menu@macbookprojm:~ > sudo dtruss lilypond

Re: v2.19.47 on Mac x86

2016-09-04 Thread Andrew Bernard
Hi Jacques, Sorry to be repetitive. What OS are you running? On 10.11.6 El Capitan, this is the scenario: sudo dtruss lilypond --version Password: dtrace: failed to execute lilypond: dtrace cannot control executables signed with restricted entitlements It all about this hard to understand

intercepting implicit/explicit page breaks

2016-09-04 Thread Knut Petersen
Hi everybody! I use #(define (display-breaks grob) (if (and (grob::has-interface grob 'paper-column-interface) (eq? #t (ly:grob-property grob 'non-musical))) (if (eq? 1 (ly:item-break-dir grob)) (let* ((moment (ly:grob-property grob 'when))(m moment)

Re: intercepting implicit/explicit page breaks

2016-09-04 Thread Thomas Morley
2016-09-04 16:31 GMT+02:00 Knut Petersen : > Hi everybody! > > I use > > #(define (display-breaks grob) >(if (and (grob::has-interface grob 'paper-column-interface) > (eq? #t (ly:grob-property grob 'non-musical))) >(if (eq? 1 (ly:item-break-dir

Re: to make a function with argument list or vector

2016-09-04 Thread Simon Albrecht
Hi Oxana, I _guess_ the reason it doesn’t work is because the parser doesn’t accept a Scheme expression instead of the number after \repeat unfold. The solution is creating music via Scheme. As a first step, you can always use something like %%% \version "2.19.47" \displayMusic { \repeat

Re: v2.19.47 on Mac x86

2016-09-04 Thread Br. Samuel Springuel
It is possible to disable SIP (System Integrity Protection, the official name for Mac's "rootless" system). You can find instructions here:

to make a function with argument list or vector

2016-09-04 Thread Оксана Крымина
hello all! please, help me to write a function to convert several numbers like (5 7 10 8) to musical string like \repeat unfold 5 {c2} \bar "" \repeat unfold 7 {c2} \bar "" \repeat unfold 10 {c2} \bar "" \repeat unfold 8 {c2} \bar "" my code produces errors only: \version "2.18.2" musSpisok

Visual Music Font Comparison

2016-09-04 Thread Thomas Morley
Hi all, may be of interest: http://elbsound.studio/music_font_comparison.php Also, this thread at notat.io: http://notat.io/viewtopic.php?f=4=178 Hope it wasn't posted before, Harm ___ lilypond-user mailing list lilypond-user@gnu.org

Re: v2.19.47 on Mac x86

2016-09-04 Thread Jacques Menu Muzhic
Hello Andrew, Here is what I got spying a running Frescobaldi instance when I closed an open file: menu@macbookprojm:~/Documents/LaTeX/PartitionsLilypond > sudo dtruss -p 1273 SYSCALL(args)= return workq_kernreturn(0x20, 0x0, 0x1) = 0 0 thread_selfid(0x0, 0x0, 0x0)

lyric extender and rest

2016-09-04 Thread arnepe
hello list, when - after a syllable with lyrics extender - follows a part starting with a "rest" in one of the stanzas (using \notemode within \lyricmode) the extender-line does not stop before the "rest", but underlines it as well. Using "" after the extender also shifts the "rest" by one

Re: 2 questions on choir staff

2016-09-04 Thread Pierre Perol-Schneider
Hi Craig, How about : \version "2.19.36" \paper { left-margin = 25 } \score { \new ChoirStaff \with { %\consists "Instrument_name_engraver" %% <= why ? instrumentName = \markup { \rotate #90 "SOLI" } shortInstrumentName = \markup { \rotate #90 "SOLI" \hspace #3

Re: v2.19.47 on Mac x86

2016-09-04 Thread Andrew Bernard
Hello Jacques, Have you been able to run these commands on El Capitan? That’s the issue. The ‘rootless’ envrionemnt prevents root from havng superuser powers. [I do not appreciate this restriction of normal UNIX capabilities.] Andrew On 4 September 2016 at 5:14:02 PM, Jacques Menu Muzhic (

Re: v2.19.47 on Mac x86

2016-09-04 Thread Jacques Menu Muzhic
Hello Andrew, I found information at : https://8thlight.com/blog/colin-jones/2015/11/06/dtrace-even-better-than-strace-for-osx.html The dtruce and dtrace options lists are shown below. They

2 questions on choir staff

2016-09-04 Thread Craig Dabelstein
Hi Lilyponders, I have two questions in the following minimal example: 1. How do you move the "SOLI" text to the left so that it doesn't overlap the text? 2. How do I keep the ChoirStaff context but remove the opening bracket? Thanks for your advice, Craig %%% \version "2.19.36" \paper {

Re: lyric extender and rest

2016-09-04 Thread David Wright
On Sun 04 Sep 2016 at 03:54:02 (-0700), arnepe wrote: > thanks Harm, > I didn't know that (or hadn't found it yet ...) I don't know that you'll find it documented as such. I'm not familiar with that idiom. Where do you find rests in the lyrics like that? Cheers, David.

Re: 2 questions on choir staff

2016-09-04 Thread Jacques Menu Muzhic
Iour velkom! JM > Le 4 sept. 2016 à 12:15, Craig Dabelstein a > écrit : > > Thanks Jacques. That's great. > > I just managed to get rid of the bracket. It was systemStartDelimiter = > #'SystemStartBar > > All the best, > > Craig > > > On 4 September 2016 at

Re: 2 questions on choir staff

2016-09-04 Thread Jacques Menu Muzhic
Hello Craig, 1. instrumentName = \markup {\rotate #90 \column{" " \vspace #-4 \bold "SOLI" }} 2. What do you mean by removing te opening bracket? JM > Le 4 sept. 2016 à 11:40, Craig Dabelstein a > écrit : > > > Hi Lilyponders, > > I have two questions in the

Re: 2 questions on choir staff

2016-09-04 Thread Craig Dabelstein
Thanks Jacques. That's great. I just managed to get rid of the bracket. It was systemStartDelimiter = #'SystemStartBar All the best, Craig On 4 September 2016 at 20:11, Jacques Menu Muzhic wrote: > Hello Craig, > > 1. > > instrumentName = \markup {\rotate #90

Re: lyric extender and rest

2016-09-04 Thread arnepe
thanks Harm, I didn't know that (or hadn't found it yet ...) cheers Arne -- View this message in context: http://lilypond.1069038.n5.nabble.com/lyric-extender-and-rest-tp194183p194189.html Sent from the User mailing list archive at Nabble.com. ___

Re:v2.19.47 on Mac x86 (Jacques Menu Muzhic)

2016-09-04 Thread Cynthia Karl
> Message: 5 > Date: Sun, 4 Sep 2016 17:41:42 +0200 > From: Jacques Menu Muzhic > To: Andrew Bernard > Cc: Jacques Menu Muzhic , lilypond-user > > Subject: Re: v2.19.47 on Mac x86 > I run

Re: 2 questions on choir staff

2016-09-04 Thread Craig Dabelstein
Hi Pierre, Thanks for your advice. Craig On 4 September 2016 at 21:15, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> wrote: > Hi Craig, > > How about : > > \version "2.19.36" > > \paper { > left-margin = 25 > } > > \score { > \new ChoirStaff \with { > %\consists

Re: to make a function with argument list or vector

2016-09-04 Thread Thomas Morley
Hi Оксана, you try to output music from a recursively defined scheme-function. As Urs already said use a music-function for music. Also some mistakes: 2016-09-04 18:52 GMT+02:00 Оксана Крымина : > \version "2.18.2" > musSpisok = #(define-scheme-function (parser location

Re: to make a function with argument list or vector

2016-09-04 Thread Urs Liska
Am 4. September 2016 19:30:02 MESZ, schrieb "Оксана Крымина" : >Great! It works! It works! >Thank You! > The first thing is you had to use define-music-function because that returns *music*. Then you can return a *list* of music expressions with something like @(map

Fwd: Re: v2.19.47 on Mac x86

2016-09-04 Thread Patrick Karl
Forwarded Message Subject:Re: v2.19.47 on Mac x86 Date: Sun, 4 Sep 2016 15:16:03 -0500 From: Patrick Karl To: Jacques Menu Muzhic Message: 5 Date: Sun, 4 Sep 2016 17:41:42 +0200 From: Jacques Menu Muzhic

Re: intercepting implicit/explicit page breaks

2016-09-04 Thread Knut Petersen
Hi Thomas! I once made: [...] Thanks a lot, that was exactly what I was looking for. Knut ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: to make a function with argument list or vector

2016-09-04 Thread Simon Albrecht
On 04.09.2016 20:47, Thomas Morley wrote: Urs suggestion would lead to the following, which I'd recommend as well: foo = #(define-music-function (parser location lst)(number-list?) #{ $@(map (lambda (i) #{ \repeat unfold $i { c2 } \bar "||" #}) lst) \bar "|." #}) \foo #'(5 7 10 8)

Re: v2.19.47 on Mac x86

2016-09-04 Thread Andrew Bernard
Hi Jacques, This is puzzling. Have you explicitly turned off the rootless protection? If not, have you got XCode installed? The question is, why does your system work, rather than why does mine not work, in fact! :=) There are hundreds of threads about this rootless problem on the internet. I am

Re: v2.19.47 on Mac x86 (Jacques Menu Muzhic)

2016-09-04 Thread Hans Aikema
On 04 Sep 2016, at 19:42, Cynthia Karl wrote: > > >> Message: 5 >> Date: Sun, 4 Sep 2016 17:41:42 +0200 >> From: Jacques Menu Muzhic >> To: Andrew Bernard >> Cc: Jacques Menu Muzhic , lilypond-user >>