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 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" > } Beware of copyrights! > << > \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 > g4*3 g4:sus4 | > bes4*3 bes4:sus4 | \break > } > } 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) > > \new Voice \with > { > \consists Pitch_squash_engraver > } > \relative c'' > { > \improvisationOn > g4 g8. g16 g8 g~g16 g g g > g8. g16 g16 g g8~g16 g g g g4 > g4 g8. g16 g8 g~g16 g g g > g8. g16 g16 g g8~g16 g g g g4 > g4 g8. g16 g8 g~g16 g g g > g8 g g8. g16 g16 g16 g8 g4 > g4 g8. g16 g8 g~g16 g g g > g4 g8. g16 g8 g~g16 g g g > g8 g8 g8. g16 g g g g g g g g > g8 g8 g8. g16 g g g g g g g g > } > >> > Also, yes, this is my first project with lilypond. I think my goal is > to create sheets similar to what you have in books like this one: > > http://www.amazon.com/Unplugged-New-York-Guitar-School/dp/0793544130/ref=sr_1_ > 3?ie=UTF8=books=1251991185=8-3 > <http://www.amazon.com/Unplugged-New-York-Guitar-School/dp/0793544130/ref=sr_1 > _3?ie=UTF8&s=books&qid=1251991185&sr=8-3> > > You can look inside here to see what I'm talking about. QQ, do you > think lilypond can produce that? Maybe this helps a bit to achieve your goal: \version "2.13.3" \include "predefined-guitar-fretboards.ly" #(ly:set-option 'delete-intermediate-files #t) \paper { indent = 0.0 ragged-last = ##t } \header { title = "Title" composer = "Composer" meter = "" copyright = "" } global = { \override Staff.TimeSignature #'style = #'() \time 4/4 \clef "treble_8" \key g \major } Chords = \chordmode { c } strumming = \relative c'' { c4\downbow c8\downbow c\upbow c4\downbow c8\downbow c\upbow } melody = \relative c' { g1 } songtext = \lyricmode { Yeah! } tab = \relative c { c8 g' <c e> g c,8 g' <c e> g } \score { << \new ChordNames { \set chordChanges = ##t \Chords } \new FretBoards { \Chords } \new Staff = "singer" << \new Voice = "melody" { \global \melody } \addlyrics { \songtext } >> \new Voice \with { \consists "Pitch_squash_engraver" } {\improvisationOn \global\strumming} \new TabStaff = "guitar tab" << \context TabVoice = "tab" \tab >> >> } Cheers, patrick -- Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3 - sicherer, schneller und einfacher! http://portal.gmx.net/de/go/chbrowser _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user