Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Federico Bruni
2014/1/21 Vaughan McAlley > On 20 January 2014 07:09, Colin Campbell wrote: > > \set Score.midiPanPosition = #RIGHT > > \set Staff.midiPanPosition = #LEFT > > This is missing in the 2.18 changes, so I didn’t know about it until > now. Very nice! > It's not even documented yet: https://code.go

Re: how close are we to having an "addAt" or "insertAt" feature?

2014-01-20 Thread Jan-Peter Voigt
Hi Keith, Am 21.01.2014 05:56, schrieb Keith OHara: > There is, of course, the simultaneous music construction with << >> > > music = << \global >{ s1*4 s8 s8 > \once\override Score.RehearsalMark #'X-offset = #-1 > \mark "A" } >{ s1*11 \mark"12" } >{

My workaround (on CentOS) for Ghostscript failure to render PDF as last step of lilypond compile

2014-01-20 Thread Aaron Mendez
Upon hearing last week that RedHat would bring CentOS offically under its wing, I set up a 'minimal desktop' of Centos 6.5 in VirtualBox to take a look around. When after installing lilypond I found it failed to compile with the apparently very common excuse of: warning: `(gs -q -dSAFER -dDEVICEWI

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Vaughan McAlley
On 20 January 2014 07:09, Colin Campbell wrote: > \set Score.midiPanPosition = #RIGHT > \set Staff.midiPanPosition = #LEFT This is missing in the 2.18 changes, so I didn’t know about it until now. Very nice! Vaughan ___ lilypond-user mailing list li

Re: how close are we to having an "addAt" or "insertAt" feature?

2014-01-20 Thread Keith OHara
Kieren MacMillan sympatico.ca> writes: > What would be involved in developing a feature to add notes or tweaks at an arbitrary moment within a music expression? > > e.g. > > global = \repeat unfold 100 s1 > music = \addAt (4 3/8) \global \once \override RehearsalMark.extra- offset #’(-

Re: Frescobaldi 2.0.13 devel first impressions and questions

2014-01-20 Thread Urs Liska
Am 20.01.2014 19:33, schrieb Wilbert Berendsen: Sorry for top posting; my phone can't quote properly. I'm working to support all of lilypond 2.18 new syntax (almost done). Yes you can change the log font in the prefs, see edit→prefs→ tools→log. Pressing up/down in the search entry jumps betwee

Re: Label placed at end of \book not recognised in \paper

2014-01-20 Thread Eluze
Tom van der Hoeven wrote > it worked, and as a bonus it gave me an extra blanco page. I don't get a special page - example?! Eluze -- View this message in context: http://lilypond.1069038.n5.nabble.com/Label-placed-at-end-of-book-not-recognised-in-paper-tp158222p158254.html Sent from the User

Re: Variables as variables

2014-01-20 Thread Johan Vromans
Janek Warchoł writes: > I think this snippet may be interesting to you > https://github.com/openlilylib/snippets/blob/master/input-shorthands/late-evaluation-of-variables.ly It is, indeed... Thanks! Now, why can this snippet not be found when searching for "lazy evaluation" and "late evaluation

Re: Variables as variables

2014-01-20 Thread Johan Vromans
Josiah Boothby writes: > Would not a more canonical way be to use tags? Not as elegant maybe, > but: > > aaa = { > \tag #'first { c4 d e f } > \tag #'second { f4 e d c } > } > > bbb = { > a4 a a a > s4*4 > b4 b b b > } > > \score { << \bbb { s4*4 \keepWithTag #'first \aaa } >> } >

Re: Variables as variables

2014-01-20 Thread Josiah Boothby
On Mon, 20 Jan 2014 16:00:59 +0100 Johan Vromans wrote: > Now I want to re-use bbb with a different value of aaa. Like a real > variable as known from other programming languages. > > aaa = { c4 d e f } > bbb = { a4 a a a \aaa b4 b b b } > \score { \bbb }% a4 a a a c4 d e f b4 b b b >

lilypond-book-preamble and extra-offset

2014-01-20 Thread Gilberto Agostinho
Hi all, I would like to ask you if there is any way of moving a grob and at the same time have lilypond-book-preamble consider its new position when cropping the page. For instance, with the code below, I'd like to have both the clef and the time signature in the image (i.e, NOT being cut): \vers

Re: Frescobaldi 2.0.13 devel first impressions and questions

2014-01-20 Thread Janek Warchoł
2014/1/20 Wilbert Berendsen : > I develop Frescobaldi in my free spare time. [...] ...and you're doing something extremely valuable for the community! Thank you! :-) Janek ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailm

Re: Frescobaldi 2.0.13 devel first impressions and questions

2014-01-20 Thread Wilbert Berendsen
Sorry for top posting; my phone can't quote properly. I'm working to support all of lilypond 2.18 new syntax (almost done). Yes you can change the log font in the prefs, see edit→prefs→ tools→log. Pressing up/down in the search entry jumps between results.  I develop Frescobaldi in my free spar

Re: Overriding bound details of VoiceFollower line

2014-01-20 Thread David B. Stocker
Doh! That does the trick. Thanks Alex. On 01/20/2014 12:34 PM, Alex Loomis wrote: Move it to after the e but before the change. \voiceOne \showStaffSwitch cs8 a r a e' e \once \override VoiceFollower #'(bound-details right Y) = #-2 \change Staff = "Right" \voiceTwo gs fs16 e On Mon,

Re: Label placed at end of \book not recognised in \paper

2014-01-20 Thread Tom van der Hoeven
Eluza, it worked, and as a bonus it gave me an extra blanco page. The document says: A particular place of a score can be marked using the|\label|command, either at top-level or inside music. It does not mention where at top-level. The example only use \label before scores. I wanted to use it

Re: Overriding bound details of VoiceFollower line

2014-01-20 Thread Alex Loomis
Move it to after the e but before the change. \voiceOne \showStaffSwitch cs8 a r a e' e \once \override VoiceFollower #'(bound-details right Y) = #-2 \change Staff = "Right" \voiceTwo gs fs16 e On Mon, Jan 20, 2014 at 11:55 AM, David B. Stocker wrote: > I've followed the directions in

Re: Variables as variables

2014-01-20 Thread Janek Warchoł
2014/1/20 Johan Vromans : > In LilyPond terms, in > > namedMusic = { ... } > > 'namedMusic' is called a variable, identifier or macro. > > Normal LilyPond behaviour is > > aaa = { c4 d e f } > bbb = { a4 a a a \aaa b4 b b b } > \score { \bbb } > > This produces { a4 a a a c4 d e f b4 b b b

Overriding bound details of VoiceFollower line

2014-01-20 Thread David B. Stocker
I've followed the directions in "Using the line-spanner-interface" in the manuals, trying to nudge the right end of a Voice Change line. It isn't working. Would someone mind taking a look at my example, and see if I'm missing som

Re: nuancing and customizing midi rendering

2014-01-20 Thread Simon Bailey
hi, On Mon, Jan 20, 2014 at 5:35 PM, Bric wrote: > Looks like the Articulate script tries to simulate stoccato by shortening > written note duration and writing in a compensating rest (i.e., { > e4\stoccato b\stoccato } is converted to { e16 r8. b16 r8. }). As the > documentation warns, this, o

Re: nuancing and customizing midi rendering

2014-01-20 Thread Bric
On 01/15/2014 02:37 PM, Peter Bjuhr wrote: On 01/15/2014 08:28 PM, Bric wrote: Please forgive me if this has been discussed and/or documented; I haven't found specifics yet. Are there lilypond controls for things like staccato, accents, and other articulations/dynamics, with respect to midi

Re: Variables as variables

2014-01-20 Thread David Kastrup
"Phil Holmes" writes: > - Original Message - > From: "David Kastrup" > To: "Johan Vromans" > Cc: > Sent: Monday, January 20, 2014 3:23 PM > Subject: Re: Variables as variables > > > >> That's not "like a real variable as known from other programming >> language". If I write >> >> aaa

Re: Large gap in text.

2014-01-20 Thread Eluze
Phil Holmes-2 wrote > - Original Message - > From: "Hwaen Ch'uqi" < > hwaenchuqi@ > > > To: < > lilypond-user@ > > > Sent: Saturday, January 18, 2014 3:30 AM > Subject: Large gap in text. > > >> Greetings All, >> I am nearing the end of preparations for my first >> LilyPond-gener

Re: Variables as variables

2014-01-20 Thread Phil Holmes
- Original Message - From: "David Kastrup" To: "Johan Vromans" Cc: Sent: Monday, January 20, 2014 3:23 PM Subject: Re: Variables as variables That's not "like a real variable as known from other programming language". If I write aaa = 3 bbb = aaa + 1 print ( bbb ) aaa = 5 print (

Re: Variables as variables

2014-01-20 Thread David Kastrup
Johan Vromans writes: > In LilyPond terms, in > > namedMusic = { ... } > > 'namedMusic' is called a variable, identifier or macro. > > Normal LilyPond behaviour is > > aaa = { c4 d e f } > bbb = { a4 a a a \aaa b4 b b b } > \score { \bbb } > > This produces { a4 a a a c4 d e f b4 b b b }

Variables as variables

2014-01-20 Thread Johan Vromans
In LilyPond terms, in namedMusic = { ... } 'namedMusic' is called a variable, identifier or macro. Normal LilyPond behaviour is aaa = { c4 d e f } bbb = { a4 a a a \aaa b4 b b b } \score { \bbb } This produces { a4 a a a c4 d e f b4 b b b } . Now I want to re-use bbb with a different

Re: Label placed at end of \book not recognised in \paper

2014-01-20 Thread Eluze
Tom van der Hoeven wrote > Hi all, > If a label placed at the end of a book, it is not recognised in the > paper description. > If it is placed before the last score, it is recognised. > Is that correct? reading the docs about \label's I think this is correct you can add an empty \markup {} to e

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread David Kastrup
Noeck writes: >> So you want lyrics events in the midi. For karaoke? > > It's more like "Why not/Just because I can". I implemented it like that > back then. As at least in Timidity the timing of music and the lyrics is > not in sync, I would remove it, if I used it now. Timidity has several opt

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Noeck
> So you want lyrics events in the midi. For karaoke? It's more like "Why not/Just because I can". I implemented it like that back then. As at least in Timidity the timing of music and the lyrics is not in sync, I would remove it, if I used it now. Cheers, Joram

Label placed at end of \book not recognised in \paper

2014-01-20 Thread Tom van der Hoeven
Hi all, If a label placed at the end of a book, it is not recognised in the paper description. If it is placed before the last score, it is recognised. Is that correct? Tom - \version "2.18.0" \paper{ %#(define page-breaking ly:page-turn-breaking) print-first-page

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Johan Vromans
Noeck writes: > I used this (which might be adapted from Frescobaldi or the LSR). It > requires the music to be written into \soprano \alto \tenor and \bass > (but this can for sure be adapted). So you want lyrics events in the midi. For karaoke? -- Johan __

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Noeck
Hi, I used this (which might be adapted from Frescobaldi or the LSR). It requires the music to be written into \soprano \alto \tenor and \bass (but this can for sure be adapted). The Score uses the default instrument and has a reduced volume compared to the Staff given by the name variable. This

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread David Kastrup
David Kastrup writes: > Johan Vromans writes: > >> Colin Campbell writes: >> >>> You're on the right track with File|New Score With Wizard. The Parts >>> tab has a section for Vocal and under it, you should choose Choir. >>> That opens a set of parameters on the right side of the panel, and >>>

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread David Kastrup
Johan Vromans writes: > Colin Campbell writes: > >> You're on the right track with File|New Score With Wizard. The Parts >> tab has a section for Vocal and under it, you should choose Choir. >> That opens a set of parameters on the right side of the panel, and >> among them is the option to gene

Re: Off-topic: Automatically create rehearsal files from SATB midi file

2014-01-20 Thread Johan Vromans
Colin Campbell writes: > You're on the right track with File|New Score With Wizard. The Parts > tab has a section for Vocal and under it, you should choose Choir. > That opens a set of parameters on the right side of the panel, and > among them is the option to generate rehearsal MIDI files. Oka

Frescobaldi 2.0.13 devel first impressions and questions

2014-01-20 Thread Jacques Menu
Hello Folks, I’ve installed it seamlessly on Mac OS X 10.9 (Mavericks) with Mac Ports some time ago (i.e. before the Poppler installation change in MacPorts), and it works fine. In particular, selecting a note to locate its position in the code is most welcome. Some questions: - Find