Re: \with-url for markup that is \epsfile doesn't work.

2014-06-09 Thread Richard Shann
Thanks - your file works for me too, and exploring I find, as you did, that most eps *do* work, I was unlucky. One thing I recall is that on the file that doesn't work the mouse pointer changes to a text insertion pointer, so it would seem to be that there is some text attribute, present in the ep

Fwd: Lilypond as a library

2014-06-09 Thread Ole Schmidt
Anfang der weitergeleiteten Nachricht: > Von: Mike Solomon > Betreff: Aw: Lilypond as a library > Datum: 8. Juni 2014 10:37:49 MESZ > An: Mauren Berti > Kopie: lilypond-user , Dominique Fober > > > On Jun 7, 2014, at 10:43 PM, Mauren Berti wrote: > >> Hello! >> >> I am writing a software a

SystemStartBracket/Brace

2014-06-09 Thread b...@wolfcomposer.com
Hello, All-- To start, i'm using LilyPond 2.18.2. To keep this short, here is how i've set up my score: \score { \new GrandStaff << \set GrandStaff.connectArpeggios = ##t \new PianoStaff \set PianoStaff.connectArpeggios = ##t << \new Staff = "upper"

Lilypond-book and Default Staff Size

2014-06-09 Thread Br. Samuel Springuel
I'm creating a document with Lilypond book and want all the musical systems in the document to be the same size, but also want to be able to tune the size to match the document font size settings (I have to produce the document in both a "normal" version and a "large type" version). So far, I'

Re: SystemStartBracket/Brace

2014-06-09 Thread David Kastrup
"b...@wolfcomposer.com" writes: > Hello, All-- > > To start, i'm using LilyPond 2.18.2. To keep this short, here is how i've set > up my score: > > \score { > > \new GrandStaff > << > \set GrandStaff.connectArpeggios = ##t > >\new PianoStaff >\set PianoStaff.connectArpe

Re: SystemStartBracket/Brace

2014-06-09 Thread Thomas Morley
2014-06-09 15:39 GMT+02:00 b...@wolfcomposer.com : > Hello, All-- > > To start, i'm using LilyPond 2.18.2. To keep this short, here is how i've > set up my score: > > \score { > > \new GrandStaff > << > \set GrandStaff.connectArpeggios = ##t > >\new PianoStaff >\set Piano

Re: Lilypond-book and Default Staff Size

2014-06-09 Thread James
On 09/06/14 14:50, Br. Samuel Springuel wrote: I'm creating a document with Lilypond book and want all the musical systems in the document to be the same size, but also want to be able to tune the size to match the document font size settings (I have to produce the document in both a "normal" v

Re: SystemStartBracket/Brace

2014-06-09 Thread b...@wolfcomposer.com
Hi, Thomas-- > is the following what you want? > > \version "2.18.0" > > \score { ><< > \new PianoStaff ><< >\new Staff = "upper" { c'''1\arpeggio } >\new Staff = "lower" { c'' 1\arpeggio } >\new Staff = "feet" { c'1\arpeggio } >\layout { >

Re: Changing default font size

2014-06-09 Thread tisimst
Yeah! Didn't you hear?... next week?... Oh bother. Just kidding. Sorry. Confession: I don't really have ANY idea when 2.20 will be released. I did hear some talk about it, which is why I intentionally used the word "relatively". In any case, I do think this feature should be included in the nex

Re: SystemStartBracket/Brace

2014-06-09 Thread David Kastrup
"b...@wolfcomposer.com" writes: > Hello, All-- > > To start, i'm using LilyPond 2.18.2. To keep this short, here is how i've set > up my score: > > \score { > > \new GrandStaff > << > \set GrandStaff.connectArpeggios = ##t > >\new PianoStaff >\set PianoStaff.connectArpe

How to separate these voices??

2014-06-09 Thread steve
Howdy! How do I get the bass quarter notes to separate from the middle 8ths? They are fused as 8ths, and \override NoteColumn.force-hshift = #1 shifts both the middle and bass voices? \version "2.18.0" voiceone = \relative c' { << { e2. | } \\ { gis,8[ b]

Re: SystemStartBracket/Brace

2014-06-09 Thread David Kastrup
Please *never* take the mailing list off the cc without announcement. If people notice this after the fact, it means that they have to search in their archives for the message and resend a copy to the mailing list. In this case, I resent the wrong message again. It's a lot of hassle for the pers

Re: How to separate these voices??

2014-06-09 Thread David Kastrup
st...@linuxsuite.org writes: > Howdy! > > How do I get the bass quarter notes to separate from > the middle 8ths? They are fused as 8ths, and > > \override NoteColumn.force-hshift = #1 > > shifts both the middle and bass voices? > > > \version "2.18.0" > > voiceone = \relative c'

Re: How to separate these voices??

2014-06-09 Thread Shane Brandes
Try putting everything in the same voice with this sort of construct {<<{}\\{}\\{}>>} regards, Shane On Mon, Jun 9, 2014 at 11:55 AM, wrote: > > Howdy! > > How do I get the bass quarter notes to separate from > the middle 8ths? They are fused as 8ths, and > > \override NoteColumn.fo

Re: Lilypond-book and Default Staff Size

2014-06-09 Thread Br. Samuel Springuel
Those options (specifically staffsize) are what I'm using right now, but they have to be set for each Lilypond command separately. I'm wondering if there is a way to set them once and have said value apply to the whole document (which contains multiple Lilypond commands).

Re: How to separate these voices??

2014-06-09 Thread steve
> > This program produces no output. Please include working minimal > examples demonstrating your problem with queries like that. > Ooops sorry. \version "2.18.0" voiceone = \relative c' { << { e2. | } \\ { gis,8[ b] gis[ b] gis[ b] | } >> } voicetwo = \r

Re: How to separate these voices??

2014-06-09 Thread steve
> Try putting everything in the same voice with this sort of construct > {<<{}\\{}\\{}>>} > Doesn't change anything... -steve > regards, > Shane > > On Mon, Jun 9, 2014 at 11:55 AM, wrote: >> >> Howdy! >> >> How do I get the bass quarter notes to separate from >> t

Re: How to separate these voices??

2014-06-09 Thread Shane Brandes
make sure you delete the unneeded voice from the score declaration. guitar = << { \voiceone }>> On Mon, Jun 9, 2014 at 1:21 PM, wrote: >> Try putting everything in the same voice with this sort of construct >> {<<{}\\{}\\{}>>} >> > > Doesn't change anything... > > -steve > > >>

Re: How to separate these voices??

2014-06-09 Thread David Kastrup
st...@linuxsuite.org writes: > Ooops sorry. > > > \version "2.18.0" > > voiceone = \relative c' { > << > { e2. | } > \\ > { gis,8[ b] gis[ b] gis[ b] | } > >> > } > > voicetwo = \relative c { > < e, e' >4 dis' cis | > } > > guitar = << { \voiceone } \\ {

Re: How to separate these voices??

2014-06-09 Thread Thomas Morley
2014-06-09 19:41 GMT+02:00 David Kastrup : > st...@linuxsuite.org writes: > >> Ooops sorry. >> >> >> \version "2.18.0" >> >> voiceone = \relative c' { >> << >> { e2. | } >> \\ >> { gis,8[ b] gis[ b] gis[ b] | } >> >> >> } >> >> voicetwo = \relative c { >> <

Re: How to separate these voices??

2014-06-09 Thread tisimst
Steve, Ok, here's what I got your snippet to do: I'm not sure how my solution plays into the rest of the piece you are working on, but this works pretty well for me: guitar = \relative c' { <<

Re: Notes engraved in weird order

2014-06-09 Thread tisimst
Mark, Not sure if it's an artifact of using an older version, but using the current 2.18.2 gives me consistent ordering regardless of the number of times: Drawing systems... Notes: (-10 9 -12 11 -3 -5 -7 2 4 0 7 5) Notes: (-10 9 -12 11 -3 -5 -7 2 4 0 7 5) This doesn't mean that it's the _right_

Re: Notes engraved in weird order

2014-06-09 Thread David Kastrup
tisimst writes: > Mark, > > Not sure if it's an artifact of using an older version, but using the > current 2.18.2 gives me consistent ordering regardless of the number of > times: > > Drawing systems... > Notes: (-10 9 -12 11 -3 -5 -7 2 4 0 7 5) > Notes: (-10 9 -12 11 -3 -5 -7 2 4 0 7 5) > > Th

Re: How to separate these voices??

2014-06-09 Thread steve
Thanks for the hints. I've looked at them and have come up with the following which looks a lot like the original. F. Tarrega's transcription of Beethoven minuet ( start of the trio ). Not sure if its the best solution though... http://imslp.org/wiki/6_Minuets,_WoO_10_%28Beethoven,_Ludwig_va

Re: triangle noteheads

2014-06-09 Thread Nick Didkovsky
Dear Lilypond users, A brief followup question regarding this technique of assigning noteheads. I am using the notehead glyph technique to set noteheads, but have run into trouble trying to change noteheads within a chord. Continuing with the cowbell example code that Fredrik originally sent me

ANN: Frescobaldi 2.0.16 released

2014-06-09 Thread Wilbert Berendsen
Hi all, Frescobaldi 2.0.16 has been released. Frescobaldi is a text editor dedicated to entering LilyPond music. Download: http://www.frescobaldi.org/download Main new features: - preference to automatically strip trailing whitespace on save (issue #274) - in Tools -> Rhythm: new command

Re: SystemStartBracket/Brace

2014-06-09 Thread b...@wolfcomposer.com
> Please *never* take the mailing list off the cc without announcement. > If people notice this after the fact, it means that they have to search > in their archives for the message and resend a copy to the mailing > list. In this case, I resent the wrong message again. > > It's a lot of has

One of these things just isn't the same

2014-06-09 Thread Daniel Rosen
\version "2.19.7" { f4-> fis-> fes-> f!-> } Why is the accent on the final note (the one with the natural sign before it) so much farther away from its parent NoteHead than the others? Is this a known issue? DR ___ lilypond-user mailing list lilypo

Re: triangle noteheads

2014-06-09 Thread Thomas Morley
2014-06-09 21:01 GMT+02:00 Nick Didkovsky : > Dear Lilypond users, > > A brief followup question regarding this technique of assigning noteheads. > > I am using the notehead glyph technique to set noteheads, but have run into > trouble trying to change noteheads within a chord. > Continuing with th

Re: SystemStartBracket/Brace

2014-06-09 Thread Matthew Collett
On 10/06/2014, at 4:28 am, David Kastrup wrote: > Please *never* take the mailing list off the cc without announcement. Please *never* blame ordinary list users for the idiosyncratic behaviour of the lilypond-user mailing list. This is the only list I have ever been on that does not reply to

Re: SystemStartBracket/Brace

2014-06-09 Thread James Harkins
Matthew Collett ihug.co.nz> writes: > > On 10/06/2014, at 4:28 am, David Kastrup gnu.org> wrote: > > > Please *never* take the mailing list off the cc without announcement. > > Please *never* blame ordinary list users for the idiosyncratic behaviour of the lilypond-user mailing > list. >

Re: Pagination

2014-06-09 Thread Charles Berger
Bonjour Jacques, je voulais simplifier, en ne mettant qu'une partie de l'oeuvre. Voici la 1ere partie de l'ensemble; je me suis arrêté des que j'ai aperçu l'erreur. \version "2.19.7" \language "italiano" \header { dedication = "." title = "." subtitle = "." subsubtitle = "

Re: Pagination

2014-06-09 Thread Charles Berger
Sorry for my english Thank's for your answer I try \tuplet instead of \times and it's ok Thank you Charles Berger -- View this message in context: http://lilypond.1069038.n5.nabble.com/Pagination-tp163061p163154.html Sent from the User mailing list archive at Nabble.com. __

Re: Pagination

2014-06-09 Thread Xavier Scheuer
On 10 June 2014 07:15, Charles Berger wrote: > > Sorry for my english > > Thank's for your answer > > I try \tuplet instead of \times and it's ok > > Thank you > > Charles Berger FYI there is a French-speaking LilyPond user mailing list: lilypond-user...@gnu.org (notice the "-fr"), where you can