Re: eps image inclusion

2016-10-22 Thread Bernhard Kleine
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

Error with \sustainOff

2016-10-22 Thread Bernhard Kleine
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

Re: eps image inclusion

2016-10-22 Thread 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 breaks the header block syntax. It > is not like

Re: Notes on wrong side of stem in triads

2016-10-22 Thread Paul
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

ANN: Abjad 2.19

2016-10-22 Thread josiah oberholtzer
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

Re: Tie settings question

2016-10-22 Thread David Nalesnik
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

Re: Tie settings question

2016-10-22 Thread David Nalesnik
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

Re: Tie settings question

2016-10-22 Thread Karol Majewski
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? >

Re: eps image inclusion

2016-10-22 Thread 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 you put the header in your code there it is on

Re: partcombine and tuplet bug (?)

2016-10-22 Thread David F.
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

Odp: Re: Tie settings question

2016-10-22 Thread Karol Majewski
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

partcombine and tuplet bug (?)

2016-10-22 Thread Kieren MacMillan
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,

Re: Tie settings question

2016-10-22 Thread David Nalesnik
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,

Re: How to engrave lowercase chord symbols

2016-10-22 Thread Thomas Morley
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

Re: Tie settings question

2016-10-22 Thread David Nalesnik
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 >

Re: Tie settings question

2016-10-22 Thread Karol Majewski
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

Re: How to engrave lowercase chord symbols

2016-10-22 Thread David Kastrup
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:

Re: How to engrave lowercase chord symbols

2016-10-22 Thread David Kastrup
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* > >

Re: How to engrave lowercase chord symbols

2016-10-22 Thread Thomas Morley
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

How to engrave lowercase chord symbols

2016-10-22 Thread 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 am E e D d7* In Lilypond you can force the

Re: No readline in scheme-sandbox

2016-10-22 Thread Thomas Morley
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:

Re: No readline in scheme-sandbox

2016-10-22 Thread 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

Re: No readline in scheme-sandbox

2016-10-22 Thread Thomas Morley
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 >>

Re: dynamic marks on multiple lines between piano staves

2016-10-22 Thread Noeck
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

Re: dynamic marks on multiple lines between piano staves

2016-10-22 Thread Richard Shann
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

Re: dynamic marks on multiple lines between piano staves

2016-10-22 Thread Richard Shann
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 } > > >> >

Re: dynamic marks on multiple lines between piano staves

2016-10-22 Thread Urs Liska
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

Re: No readline in scheme-sandbox

2016-10-22 Thread 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 /etc/hints. > * Remove

Re: No readline in scheme-sandbox

2016-10-22 Thread Thomas Morley
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

Re: No readline in scheme-sandbox

2016-10-22 Thread 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: