Hi David,
Am 29.09.2013 00:36, schrieb David Nalesnik:
Hi Urs,
...
I couldn't get any results with a music function, but a little
experimenting got me a tiny engraver which responds to the directional
operators. Not sure how useful this is,
It is very useful, thank you.
I
__
Am 29.09.2013 09:23, schrieb Urs Liska:
Hi David,
Am 29.09.2013 00:36, schrieb David Nalesnik:
Hi Urs,
...
I couldn't get any results with a music function, but a little
experimenting got me a tiny engraver which responds to the
directional operators. Not sure how useful this is,
It is v
David Nalesnik writes:
> Hi Urs,
>
>
> On Sat, Sep 28, 2013 at 12:13 PM, Urs Liska wrote:
>
>> Hi,
>>
>> I have a 'function' that redefines commands like \slurUp to color the
>> corresponding grob (highlighting manual interventions during score
>> development).
>>
>> Is it possible to 'catch' in
David Kastrup writes:
> colorizeDir =
> #(define-music-function (parser location item)
> (symbol-list-or-music?)
> (define (grob-colorize-dir grob)
> (let ((ev (event-cause grob)))
> (and ev (ly:event-property ev 'direction #f)
> red)))
> #{ \tweak color #grob-colori
With the support of Janek and Franciszek I now got the compilation to
work. I should add that the problem was not in the script but due to
misuse from my part!
Attached is a test file I just run. If you David and Gilberto (or anyone
else of course) have any more test ideas for this I'll be hap
Hi David,
this is great!
Am 29.09.2013 09:51, schrieb David Kastrup:
David Kastrup writes:
colorizeDir =
#(define-music-function (parser location item)
(symbol-list-or-music?)
(define (grob-colorize-dir grob)
(let ((ev (event-cause grob)))
(and ev (ly:event-property ev 'dir
Peter Bjuhr writes:
> With the support of Janek and Franciszek I now got the compilation to
> work. I should add that the problem was not in the script but due to
> misuse from my part!
If you cut your hand with a knife by letting the handle slip, it's a
misuse of the knife. Still some knifes c
Urs Liska writes:
> Hi David,
>
> this is great!
>
> Am 29.09.2013 09:51, schrieb David Kastrup:
>> David Kastrup writes:
>>
>>> colorizeDir =
>>> #(define-music-function (parser location item)
>>>(symbol-list-or-music?)
>>>(define (grob-colorize-dir grob)
>>> (let ((ev (event-cause
On 09/28/2013 01:41 PM, David Kastrup wrote:
That's because each \A is in a Voice of its own. Use an explicit Voice
to avoid independent implicit voices for each \A:
That's good to know! Thanks!
If I may add another more realistic yet hypothetical example. The
following works. If the ties c
David Kastrup schrieb:
>Urs Liska writes:
>
>> Hi David,
>>
>> this is great!
>>
>> Am 29.09.2013 09:51, schrieb David Kastrup:
>>> David Kastrup writes:
>>>
colorizeDir =
#(define-music-function (parser location item)
(symbol-list-or-music?)
(define (grob-colorize-
Urs Liska writes:
>>You can write:
>>
>>#(define-music-function (parser location item)
>> (symbol-list-or-music?)
>> (define (grob-colorize-dir grob)
>> (let ((ev (event-cause grob)))
>> (case (ly:event-property ev 'direction)
>> ((1) red)
>> ((-1) blue)
>>
Hi Peter,
I do not have any other suggestions, I think your results show that
everything should be working ok (considering what David wrote above, about
the last example). Thanks for your tests!
Take care,
Gilberto
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Acciacc
I was following the caption subject in lily user list.I run the following (copy
from the lists). I got error, please see the log at the end of lily code.
Thanks,
Ming
%lily code starts %
\version "2.17.27"
colorizeDir =
#(define-music-function (parser location item)
(symbol-list-
Hi Ming,
On Sun, Sep 29, 2013 at 8:37 AM, MING TSANG wrote:
> I was following the caption subject in lily user list. I run the
> following (copy from the lists). I got error, please see the log at the
> end of lily code.
> Thanks,
> Ming
>
> %lily code starts %
> \version "2.17
2013/9/29 David Kastrup :
> Urs Liska writes:
>
>>>You can write:
>>>
>>>#(define-music-function (parser location item)
>>> (symbol-list-or-music?)
>>> (define (grob-colorize-dir grob)
>>> (let ((ev (event-cause grob)))
>>> (case (ly:event-property ev 'direction)
>>> ((1)
Thomas Morley writes:
You can write:
colorizeDir =
#(define-music-function (parser location item)
(symbol-list-or-music?)
(define (grob-colorize-dir grob)
(let ((ev (event-cause grob)))
(case (ly:event-property ev 'direction)
((1) red
On Sun, Aug 25, 2013 at 02:58:16AM +0200, Thomas Morley wrote:
> 2013/8/25 Jim Long :
> > Adam:
> >
> > Your page is fun to play with, and a handy reference.
> >
> > Two comments, if I may:
> >
> > There's a user interface glitch, and unfortunately right now I'm forced to
> > use Windows 7, but at
David Kastrup writes:
> Thomas Morley writes:
>
>You can write:
>colorizeDir =
>#(define-music-function (parser location item)
> (symbol-list-or-music?)
> (define (grob-colorize-dir grob)
> (let ((ev (event-cause grob)))
> (case (ly:event-property ev 'di
Hi
I'm trying to use LilyJAZZ on version 2.17.27
I've updated the file with convert-ly and also tried the change made by
Keith:
http://lilypond.1069038.n5.nabble.com/Pseudo-handwritten-font-tt142117.html#a147230
But I still get an error.
I attach both files.
BTW, hosting these files in a git rep
In a text markup, is it possible to make only the first letter of a word bold? I tried using \bold as shown below, but an unwanted space appears after the bold letter. I could probably shift the letters around manually to correct for the space, but is there a better way?Greetings,-Paul\version "2
Hi Paul,
On Sun, Sep 29, 2013 at 11:02 AM, Paul Morris wrote:
> In a text markup, is it possible to make only the first letter of a word
> bold? I tried using \bold as shown below, but an unwanted space appears
> after the bold letter. I could probably shift the letters around manually
> to c
Hi Paul,
> In a text markup, is it possible to make only the first letter of a word
> bold? I tried using \bold as shown below, but an unwanted space appears
> after the bold letter. I could probably shift the letters around manually to
> correct for the space, but is there a better way?
\ve
Not exaclty, that puts the A patternse in different staffs and there is no tie
between them...
Thanks for the response though, and sorry it took me so long to get back to
this.
On Sep 27, 2013, at 12:05 AM, Urs Liska wrote:
> Does
>
> A = \drums { sn8 sn8~ }
>
> { \A \A }
>
> Do what you w
Am 29.09.2013 17:54, schrieb Federico Bruni:
Hi
I'm trying to use LilyJAZZ on version 2.17.27
I've updated the file with convert-ly and also tried the change made by
Keith:
http://lilypond.1069038.n5.nabble.com/Pseudo-handwritten-font-tt142117.html#a147230
But I still get an error.
I attach bot
On 09/28/2013 11:23 PM, Thomas Morley wrote:
To the author of the new LSR-snippet "Center Lyric Syllables (ignoring
punctuation)"
Many thanks for your code.
I did some slightly reformatting of code and description.
It's now approved as
http://lsr.dsi.unimi.it/LSR/Item?id=888
Really nice.
For
2013/9/29 Marc Hohl
> Hi Federico,
>
> see my reworked file attached. It covers the dot spacing bug in
> markups as well.
>
> It works for me under 2.17.27.
>
Thanks Marc
it compiles now but the output is weird: many braces and no notes.
Can you test the attached file?
jazz-test-3.ly
Descrip
On 09/29/2013 07:52 PM, Alexander Kobel wrote:
On 09/28/2013 11:23 PM, Thomas Morley wrote:
To the author of the new LSR-snippet "Center Lyric Syllables (ignoring
punctuation)"
Many thanks for your code.
I did some slightly reformatting of code and description.
It's now approved as
http://lsr
This is an interesting approach and it seems like I should be able to do what I
want with it... I'm not entirely sure I understand why it works though, why the
simultaneous rests create the tie on the snares ? I'm too new to both lilypond
and music so please forgive my naiveness.
I would just n
Indeed that works! Awesome! Thanks!
On Sep 27, 2013, at 3:46 AM, Peter Bjuhr wrote:
>
> On 09/27/2013 07:05 AM, Urs Liska wrote:
>> Does
>>
>> A = \drums { sn8 sn8~ }
>>
>> { \A \A }
>>
>> Do what you want?
>
> I was curious of this, but Urs is right it does work. There are no obstacles
>
Hi Alexander,
2013/9/29 Alexander Kobel :
> On 09/29/2013 07:52 PM, Alexander Kobel wrote:
>>
>> On 09/28/2013 11:23 PM, Thomas Morley wrote:
>>>
>>> To the author of the new LSR-snippet "Center Lyric Syllables (ignoring
>>> punctuation)"
>>>
>>> Many thanks for your code.
>>>
>>> I did some sligh
2013/9/29 Federico Bruni :
>
> 2013/9/29 Marc Hohl
>>
>> Hi Federico,
>>
>> see my reworked file attached. It covers the dot spacing bug in
>> markups as well.
>>
>> It works for me under 2.17.27.
>
>
> Thanks Marc
>
> it compiles now but the output is weird: many braces and no notes.
> Can you t
2013/9/29 Thomas Morley :
> 2013/9/29 Federico Bruni :
>>
>> 2013/9/29 Marc Hohl
>>>
>>> Hi Federico,
>>>
>>> see my reworked file attached. It covers the dot spacing bug in
>>> markups as well.
>>>
>>> It works for me under 2.17.27.
>>
>>
>> Thanks Marc
>>
>> it compiles now but the output is wei
David Nalesnik,
Thank you. By reading the log message, I cannot decipher what it means.
Emanuel,
Ming
From: David Nalesnik
To: MING TSANG
Cc: "lilypond-user@gnu.org"
Sent: Sunday, September 29, 2013 9:43:59 AM
Subject: Re: Catch direction operators
Hi M
Using Lilypond 2.16, is it possible to generate a single MIDI file
containing multiple \scores? If I put a \midi section inside each
score, I get separate MIDI files ... but if I put the \midi section
outside the \scores, I get *no* MIDI files.
e.g. --
\version
"2.16.0"
2013/9/29 Dossy Shiobara
> Using Lilypond 2.16, is it possible to generate a single MIDI file
> containing multiple \scores? If I put a \midi section inside each
> score, I get separate MIDI files ... but if I put the \midi section
> outside the \scores, I get *no* MIDI files.
>
Hi Dossy
From:
And that also (necessarily) means that if I need to organize the
arrangement in multiple \score blocks, there's no way for me to generate
a single MIDI file from them using LilyPond alone?
On 9/29/13 4:58 PM, Federico Bruni wrote:
> 2013/9/29 Dossy Shiobara mailto:do...@panoptic.com>>
>
> Usi
2013/9/29 Dossy Shiobara
> And that also (necessarily) means that if I need to organize the
> arrangement in multiple \score blocks, there's no way for me to generate a
> single MIDI file from them using LilyPond alone?
>
are you sure you need to organize it in \score blocks?
can you use variab
All,
I'm engraving
Russell's New and Improved Edition.
Thoroughly revised & corrected
by
Vincenzo Vannini
A Practical Method
of
Italian Singing
by
N(icola) Vaccai
Translated
(with special regard to a favorable arrangement of syllables)
by
Henry Badger
Boston
Geo. D. Russel
Copyright 1878
Ther
On Sep 29, 2013, at 3:30 PM, Federico Bruni wrote:
> 2013/9/29 Thomas Morley
> Hi Federico,
>
> testing the files from your initial mail I've got :
>
> LilyJAZZ.ily:164:33: While evaluating arguments to grob::has-interface
> in expression (grob::has-interface grob (quote key-cancellation-)
>
On 9/29/13 5:29 PM, Federico Bruni wrote:
> are you sure you need to organize it in \score blocks?
> can you use variables instead (and one \score block)?
One \score is a 4-bar PianoStaff intro only, then the second \score is
the rest of the arrangement, that contains ChordNames, FretBoards, a
Vo
Am 30.09.2013 00:36, schrieb Dossy Shiobara:
On 9/29/13 5:29 PM, Federico Bruni wrote:
are you sure you need to organize it in \score blocks?
can you use variables instead (and one \score block)?
One \score is a 4-bar PianoStaff intro only, then the second \score is
the rest of the arrangemen
2013/9/30 Stan Sanderson :
>
> On Sep 29, 2013, at 3:30 PM, Federico Bruni wrote:
>
> 2013/9/29 Thomas Morley
>>
>> Hi Federico,
>>
>> testing the files from your initial mail I've got :
>>
>> LilyJAZZ.ily:164:33: While evaluating arguments to grob::has-interface
>> in expression (grob::has-inter
Dossy Shiobara writes:
> On 9/29/13 5:29 PM, Federico Bruni wrote:
>> are you sure you need to organize it in \score blocks?
>> can you use variables instead (and one \score block)?
> One \score is a 4-bar PianoStaff intro only, then the second \score is
> the rest of the arrangement, that conta
Guy Stalnaker writes:
> All,
>
> I'm engraving
>
> Russell's New and Improved Edition.
> Thoroughly revised & corrected
> by
> Vincenzo Vannini
>
> A Practical Method
> of
> Italian Singing
> by
> N(icola) Vaccai
>
> Translated
> (with special regard to a favorable arrangement of syllables)
> by
2013/9/30 David Kastrup :
> Dossy Shiobara writes:
>
>> On 9/29/13 5:29 PM, Federico Bruni wrote:
>>> are you sure you need to organize it in \score blocks?
>>> can you use variables instead (and one \score block)?
>> One \score is a 4-bar PianoStaff intro only, then the second \score is
>> the r
On 9/29/13 8:34 PM, Thomas Morley wrote:
> Hi Dossy,
>
> what David wrote may be illustrated by this example
> [...]
Thanks! This is interesting ... the voice staff is rendered above the
chord name and fretboards. In the arrangement I'm working on, I want
the chord names, then freboards, then
Hi All the following looks good in PDF but produces no midi output. Can you
help me guess what I'm doing wrong?
Thanks!
\version "2.16.2"
t = \drummode { \times 2/3 { sn4 sn sn } }
tp = \drummode { \times 2/3 { bd4 bd bd } }
unoM = \drummode {
\time 2/4
\t | \t | \t | sn4 sn | sn sn | \t |
On 09/29/2013 08:47 PM, Thomas Morley wrote:
Hi Alexander,
2013/9/29 Alexander Kobel :
On 09/29/2013 07:52 PM, Alexander Kobel wrote:
On 09/28/2013 11:23 PM, Thomas Morley wrote:
To the author of the new LSR-snippet "Center Lyric Syllables (ignoring
punctuation)"
Many thanks for your code.
2013/9/30 Thomas Morley
> Stan is on the right track.
> Testing in an environment where the fonts were _not_ installed gave me
> exactly your output.
> After installing them all works and looks fine.
>
They are installed:
$ fc-list | grep LilyJAZZ
/home/fede/.local/share/fonts/LilyJAZZText.otf:
49 matches
Mail list logo