Re: Fixing bad alignment in polyphonic section

2007-06-26 Thread Neil Puttock
Mats Bengtsson <[EMAIL PROTECTED]> wrote: Tricky situation! The only fix I can think of for the moment, is the following ugly workaround: \version "2.10.25" \paper { ragged-right = ##t } << \relative c'' { << { \voiceThree g4 } \\ { 8 } >> } \new Staff \relative c { \clef bass << { \hi

tempo change

2007-06-26 Thread Ole Schmidt
Dear all, I need a tempo change from 16th triplets to 16th In the manual I can't find out how to get a tuplet bracket over the first 16th note in my example: \version "2.10.15" \new Staff { \relative c'{ c^\markup { \smaller \general-align #Y #DOWN \note #"16" #1 = \smaller \general-align

Re: 2.10.28 availability

2007-06-26 Thread John Mandereau
Le mardi 26 juin 2007 à 22:15 +0200, Germain G. Ivanoff-Trinadtzaty a écrit : > Hi, > The bug list states of 2.11.28 and 2.10.28 versions (issue 383 reported 2007 > June 23th). It means that these bugs are fixed in Git source repository, so the bugfixes will be included in .28 releases. > Since

2.10.28 availability

2007-06-26 Thread Germain G. Ivanoff-Trinadtzaty
Hi, The bug list states of 2.11.28 and 2.10.28 versions (issue 383 reported 2007 June 23th). Since I'm quite a new LP-user, I'm not aware of availability delays; by now I can't find updates of our favorite music sheet engraver on lilypond.org to download. Is it ok ? Germain __

RE: Multiple short pieces

2007-06-26 Thread Ed Ardzinski
That's exactly how I've done it for bass guitar riffs and scale exercises. I've even used \markup in between score blocks to add gab between the scale exercises. Let me know off line if you'd like to see an example, but it will take me a while to get it to you (likely tomorrow) as I'm at work

Re: Multiple short pieces

2007-06-26 Thread Joey Coyle
Thanks Germain, That's perfect I do have the documentation, and I always try to figure things out myself, but I have never explicitly used \score before and it's intended purpose is not clear from the documentation unless you have some pre-existing knowledge of it's use... which I

Re: missing repeat barline

2007-06-26 Thread Paul Scott
Tao Cumplido wrote: yes, I tried that but the double-barline needs to be there and when I remove it the second ending bracket is closed which shouldn't be. Replace "||" with "||:" Paul Scott ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Multiple short pieces

2007-06-26 Thread Germain G. Ivanoff-Trinadtzaty
Just put multiple : \score { c c c c% ...music... \header { opus = "left title" piece = "right title" } } blocks in a single file. There's a lot of info on lilypond.org Germain - Original Message - From: "Joey Coyle" <[EMAIL PROTECTED]> To: Sent:

Re: missing repeat barline

2007-06-26 Thread Tao Cumplido
yes, I tried that but the double-barline needs to be there and when I remove it the second ending bracket is closed which shouldn't be. thanks for the reply. regards, Tao Original-Nachricht Datum: Tue, 26 Jun 2007 18:21:33 +0200 (MZT) Von: [EMAIL PROTECTED] An: [EMAIL PROTEC

Re: Fixing bad alignment in polyphonic section

2007-06-26 Thread Damian leGassick
that's not so ugly, i'll use it but why did you need the 'Three' in \voice Three ? it works without the 'Three' in 2.11.27 D On 26 Jun 2007, at 08:09, Mats Bengtsson wrote: Tricky situation! The only fix I can think of for the moment, is the following ugly workaround: \version "2.10.25"

Multiple short pieces

2007-06-26 Thread Joey Coyle
Hi, For Traditional music where most pieces are only 2 lines long, I have used ABC. I was able to make a file that has many tunes, and then have all those tunes on a couple of pages of sheet music. I would also like to do this for guitar riffs I am working on... Is there a way to do th

Re: missing repeat barline

2007-06-26 Thread Toine Schreurs
> in the following code the first repeat bar line of the second last repeat > block is missing. > I don't think I made a mistake, but I thought I'd ask here first before I > report it to the bug-list. > If one of you is sure that it is a bug, could he/she please forward it to the > bug-list for

missing repeat barline

2007-06-26 Thread tao_lilyponduser
hello, in the following code the first repeat bar line of the second last repeat block is missing. I don't think I made a mistake, but I thought I'd ask here first before I report it to the bug-list. If one of you is sure that it is a bug, could he/she please forward it to the bug-list for me t

Re: Fixing bad alignment in polyphonic section

2007-06-26 Thread Mats Bengtsson
Tricky situation! The only fix I can think of for the moment, is the following ugly workaround: \version "2.10.25" \paper { ragged-right = ##t } << \relative c'' { << { \voiceThree g4 } \\ { 8 } >> } \new Staff \relative c { \clef bass << { \hideNotes a'4 } \\ {8 } >> } >> /Mats Neil