Am 23.10.2016 um 06:29 schrieb Bernhard Kleine:
> Am 23.10.2016 um 00:11 schrieb Noeck:
>> Dear Bernhard,
>>
>> you put the markup containing the eps file in your header block. This
>> can not work. You can think of the \header block like setting variables.
>> Code without a 'variable =' before it
The following minimal piece does not compile properly. I looked in the
docu but could not find what is wrong.
Any help appreciated
Regards Bernhard
\version "2.19.49"
\language "deutsch"
global = {
\key a \major
\time 6/8
}
leftOne = \relative c' {
\voiceFour
\global
\clef bass \ste
Am 23.10.2016 um 00:11 schrieb Noeck:
> Dear Bernhard,
>
> you put the markup containing the eps file in your header block. This
> can not work. You can think of the \header block like setting variables.
> Code without a 'variable =' before it breaks the header block syntax. It
> is not like where
On 10/18/2016 12:23 PM, David Kastrup wrote:
Mark Knoop writes:
At 17:05 on 18 Oct 2016, Davide Liessi wrote:
I reproduced the issue with this:
\version "2.19.47"
\layout { #(layout-set-staff-size 19) }
{ }
Using #(set-global-staff-size 19) instead works as expected.
I couldn't find a bug
Dear friends,
I'm pleased to announce that Abjad 2.19 is now available.
Abjad is a Python API for Formalized Score Control
Abjad helps composers build up complex pieces of music notation in an
iterative and incremental way. Use Abjad to create symbolic
representations of all the
On Sat, Oct 22, 2016 at 7:11 PM, David Nalesnik
wrote:
> On Sat, Oct 22, 2016 at 6:55 PM, Karol Majewski wrote:
>> Hi David, when a chord doesn't have a flag, then your code doesn't work.
>> Just replace
>>
>> 8~
>>
>> with
>>
>> 4~
>>
>> and it won't compile. Perhaps there should be a condition
On Sat, Oct 22, 2016 at 6:55 PM, Karol Majewski wrote:
> Hi David, when a chord doesn't have a flag, then your code doesn't work. Just
> replace
>
> 8~
>
> with
>
> 4~
>
> and it won't compile. Perhaps there should be a condition in your code: "if a
> note has a a flag then set Flag.Y-extent to
Hi David, when a chord doesn't have a flag, then your code doesn't work. Just
replace
8~
with
4~
and it won't compile. Perhaps there should be a condition in your code: "if a
note has a a flag then set Flag.Y-extent to (4 . 0)". Or maybe there is a
better way to fix this?
> %
Dear Bernhard,
you put the markup containing the eps file in your header block. This
can not work. You can think of the \header block like setting variables.
Code without a 'variable =' before it breaks the header block syntax. It
is not like where you put the header in your code there it is on pa
I’ve hit this bug as well, but don’t have a workaround for it. I’ve had to
manually combine tuplets when voices share a note. The issue there, besides
the extra work and the way it muddies the source file, is that the shared note
will be printed with two note heads and a single stem instead of
Aha, I get it. Thanks for the lesson. It seems I have to study scheme tutorial
deeply...
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
Hi all,
Any ideas why the tuplet isn’t bracketing properly in the following snippet,
and/or a workaround?
%%% SNIPPET BEGINS
\version "2.19"
musicA = { \tuplet 3/2 { r4 r c' } d'2 }
musicB = { \tuplet 3/2 { r4 r c' ~ } 2 }
\score { \partcombine \musicA \musicB }
%%% SNIPPET ENDS
Thanks,
Kiere
On Sat, Oct 22, 2016 at 8:16 AM, David Nalesnik
wrote:
>
> (2) As the log will tell you, "flag" is not defined. I assume you
> arrived at this because of Harm's usage of "tie"
> below. He's creating a local variable to refer to Tie grobs which
> he's already obtained, not relying on some existi
2016-10-22 14:32 GMT+02:00 David Kastrup :
> Thomas Morley writes:
>>
>> Which input-syntax do you prefer for entering single bass-notes?
>
> These days I'd suggest rather than c:1 . A "true" accordion chord
> entry mode would likely provide capitalized pitch names like C, Dis,
> ... for the bas
Hi Karol,
On Sat, Oct 22, 2016 at 7:33 AM, Karol Majewski wrote:
> Now I try to change Flag.Y-extent value in chords to: \override Flag.Y-extent
> = #'(4 . 0)
>
> Got this, but it doesn't work. What am I doing wrong?
>
> evenTies =
> #(lambda
> (grob)
> (let
> ((ties
> (ly:grob-a
Now I try to change Flag.Y-extent value in chords to: \override Flag.Y-extent =
#'(4 . 0)
Got this, but it doesn't work. What am I doing wrong?
evenTies =
#(lambda
(grob)
(let
((ties
(ly:grob-array->list
(ly:grob-object grob 'ties
(if
(>
(length ti
Thomas Morley writes:
> 2016-10-22 12:43 GMT+02:00 Todor Vachkov :
>> Hello,
>>
>> My goal is to engrave music for accordion and I would like to have my chords
>> symbols as follows:
>>
>> Bass tone: allways uppercase: e.g. A E D
>>
>> Chords: allways lower case: e.g. major chords a e d; minor ch
Todor Vachkov writes:
> Hello,
>
> My goal is to engrave music for accordion and I would like to have my
> chords symbols as follows:
>
> Bass tone: allways uppercase: e.g. *A E D*
>
> Chords: allways lower case: e.g. *major* chords *a e d*; *minor* chords *am
> em dm*
>
> And together: *A am E e
2016-10-22 12:43 GMT+02:00 Todor Vachkov :
> Hello,
>
> My goal is to engrave music for accordion and I would like to have my chords
> symbols as follows:
>
> Bass tone: allways uppercase: e.g. A E D
>
> Chords: allways lower case: e.g. major chords a e d; minor chords am em dm
>
> And together: A
Hello,
My goal is to engrave music for accordion and I would like to have my
chords symbols as follows:
Bass tone: allways uppercase: e.g. *A E D*
Chords: allways lower case: e.g. *major* chords *a e d*; *minor* chords *am
em dm*
And together: *A am E e D d7*
In Lilypond you can force the lowe
2016-10-22 11:13 GMT+02:00 David Kastrup :
> Thomas Morley writes:
>
>> 2016-10-22 10:12 GMT+02:00 David Kastrup :
>>> Thomas Morley writes:
>>>
The first hit reads in sourcefiles/guile.changelog:
guile (1.8.1-2) unstable; urgency=low
* Add readline as build dependency,
Thomas Morley writes:
> 2016-10-22 10:12 GMT+02:00 David Kastrup :
>> Thomas Morley writes:
>>
>>> The first hit reads in sourcefiles/guile.changelog:
>>>
>>> guile (1.8.1-2) unstable; urgency=low
>>>
>>> * Add readline as build dependency, libreadline8 as dependency for
>>> libguile17 (th
2016-10-22 10:12 GMT+02:00 David Kastrup :
> Thomas Morley writes:
>
>> The first hit reads in sourcefiles/guile.changelog:
>>
>> guile (1.8.1-2) unstable; urgency=low
>>
>> * Add readline as build dependency, libreadline8 as dependency for
>> libguile17 (thanks Ted Anderson).
>> * Remove
Hi Richard,
sorry for not reading your full mail - of course, you mentioned it.
Joram
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
On Fri, 2016-10-21 at 21:51 +0200, Noeck wrote:
> Hi,
>
> Am 21.10.2016 um 10:25 schrieb Richard Shann:
> > <>^\markup\scale #'(1 . 1)\column{\line{1. \dynamic p
> > }\line{2. \dynamic f}
> > }
>
> Why the \scale?
You chopped out the bit of my reply that commented on the redundancy of
the scale.
On Sat, 2016-10-22 at 00:59 +0200, Sirius Barras wrote:
> Dear Urs and Simon
>
>
>
> I'm not sure to understand how to correctly use your solution:
>
>
>
> > <<
> > \new Staff { c'1 }
> > \new Dynamics { s1 \p }
> > \new Dynamics { s1 \f }
> > \new Staff { \clef bass c1 }
> > >>
>
>
Am 22.10.2016 um 00:59 schrieb Sirius Barras:
> Dear Urs and Simon
>
> I'm not sure to understand how to correctly use your solution:
>
> > <<
> > \new Staff { c'1 }
> > \new Dynamics { s1 \p }
> > \new Dynamics { s1 \f }
> > \new Staff { \clef bass c1 }
> > >>
>
> My apologize if my que
Thomas Morley writes:
> The first hit reads in sourcefiles/guile.changelog:
>
> guile (1.8.1-2) unstable; urgency=low
>
> * Add readline as build dependency, libreadline8 as dependency for
> libguile17 (thanks Ted Anderson).
> * Remove /etc/hints.
> * Remove curr from hints.
>
> -- Jan
2016-10-22 9:16 GMT+02:00 Thomas Morley :
> 2016-10-22 0:37 GMT+02:00 Thomas Morley :
>> 2016-10-22 0:17 GMT+02:00 David Kastrup :
>>> Thomas Morley writes:
>>>
2016-10-21 23:30 GMT+02:00 David Kastrup :
> Thomas Morley writes:
>
>> I mostly use self-compiled LilyPond which seems
2016-10-22 0:37 GMT+02:00 Thomas Morley :
> 2016-10-22 0:17 GMT+02:00 David Kastrup :
>> Thomas Morley writes:
>>
>>> 2016-10-21 23:30 GMT+02:00 David Kastrup :
Thomas Morley writes:
> I mostly use self-compiled LilyPond which seems to work as it should.
> I'd call it a bug not
30 matches
Mail list logo