[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Issue 1700 in lilypond: Chord names collide when several note-column
From: |
lilypond |
Subject: |
Re: Issue 1700 in lilypond: Chord names collide when several note-columns lay in between |
Date: |
Sun, 15 Jan 2012 13:36:41 +0000 |
Comment #9 on issue 1700 by address@hidden: Chord names collide when
several note-columns lay in between
http://code.google.com/p/lilypond/issues/detail?id=1700
Sorry, I didn't have time before to strip examples. I tried with 2.15.24.
For my case the work around was to add some lyrics but this my be a problem
for instrumental works.
For instance
<<
\new ChordNames \chordmode {
\set noChordSymbol = ""
f4:13.15.17 r4 f2 }
\new Staff { f'4 f'8 f' f'2 }
or
<<
\new ChordNames \repeat unfold 10 \chordmode {
\set noChordSymbol = ""
f4:13.15.17.19 r4 f2 }
\new Staff \repeat unfold 10 { f'4 f'8 f' f'2 }
or
\paper {
indent = #0
ragged-right = ##t
}
\score{
<<
\new ChordNames \chordmode {
\set noChordSymbol = ""
f4:13.15.17 r4 f2
f2:13.15.17 f2
f4.:13.15.17 f8
}
\new Staff {
f'4 f'8 f' f'2 \break
f'4 f' f'2 \break
f'4 f'8 f' f'2 \break
}
>>
}