Re: Lilypond - chord progression

2009-09-06 Thread Christian Henning
Hi Patrick, \new ChordNames { \chordmode       {               g1 |               g16*6:sus4 g16*10 | \break               bes1 |               bes16*6:sus4 bes16*10 | \break               c1 |               c2:sus4 c2| \break               c1:m |               c1:m | \break        

Re: Lilypond - chord progression

2009-09-06 Thread Patrick Schmidt
Instead of writing e.g. g16*6 you could have used g4.. A dotted quarter note consists of six sixteenth notes. Instead of g16*10 you could have used g8 s2 which is easier to read. You should consult the Learning Manual p. 14-15 and the section Rhythm in the Notation Reference (p. 29-40)

Re: Lilypond - chord progression

2009-09-04 Thread Christian Henning
Here is what I have now. It's only the first few bar but I like the output. Please comment if you see something: \version 2.12.2 #(ly:set-option 'delete-intermediate-files #t) % deletes the .ps file automatically \header { title = Creep composer = Radiohead } \new ChordNames {

Re: Lilypond - chord progression

2009-09-04 Thread Patrick Schmidt
Hi Christian, your pdf looks fine. But there are some aspects you could have achieved easier: Original-Nachricht Datum: Fri, 4 Sep 2009 10:25:46 -0400 Von: Christian Henning chhenn...@gmail.com An: lilypond-user@gnu.org Betreff: Re: Lilypond - chord progression Here

Re: Lilypond - chord progression

2009-09-03 Thread Christian Henning
Hi all, thanks for the replies. I could fix all of my problems. I'm using multipliers now which I find easier to use and to read. Thanks to Brett Duncan. This now finishes my first project using lilypond. I like it and will continue using it. Great stuff! Christian On Wed, Sep 2, 2009 at 1:34

Re: Lilypond - chord progression

2009-09-03 Thread Patrick Horgan
Christian Henning wrote: Hi all, thanks for the replies. I could fix all of my problems. I'm using multipliers now which I find easier to use and to read. Thanks to Brett Duncan. This now finishes my first project using lilypond. I like it and will continue using it. Great stuff! Christian

Lilypond - chord progression

2009-09-01 Thread Christian Henning
Hi there, I'm almost finished with my first lilypond piece. I'm quite happy with the results. But, there are a couple of questions left regarding the output. Please consider the following piece: \version 2.12.2 #(ly:set-option 'delete-intermediate-files #t) % deletes the .ps file automatically

Re: Lilypond - chord progression

2009-09-01 Thread Christian Henning
I just realized a small error in my script. Here is the updated version: \version 2.12.2 #(ly:set-option 'delete-intermediate-files #t) % deletes the .ps file automatically \header { title = title composer = band } \new ChordNames { \chordmode { \set

Re: Lilypond - chord progression

2009-09-01 Thread Peter Chubb
Christian == Christian Henning chhenn...@gmail.com writes: Christian I added the duration for the two c:m but the second c:m is Christian still not showing. Mhmm, weird. If you set chordChanges, then chords are printed only when they change. You have two c-minors in a row, so the second will

Re: Lilypond - chord progression

2009-09-01 Thread Andrew Tucker
On Sep 1, 2009, at 11:17 PM, Christian Henning wrote: Hi there, I'm almost finished with my first lilypond piece. I'm quite happy with the results. But, there are a couple of questions left regarding the output. Please consider the following piece: \version 2.12.2 #(ly:set-option