lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: two staffs in one page


From: Noeck
Subject: Re: two staffs in one page
Date: Sun, 12 May 2013 15:27:22 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130404 Thunderbird/17.0.5


Hi Xavier,

perhaps, this comes close to what you want ({a b c' } being the
replacement for your solo):

\version "2.16.0"
\language "english"

chordslist = \chordmode {
  c1:7 cs1:7 d1:m7 d1:7 d1:aug7 d1:11 d1:13 ef1:13 e1:7 e1:aug7 f1:7
g1:7 g1:aug7 a1:m7 a1:7 a1:9 b1:m7 b1:7
}


\bookpart {

  \header {
    subtitle = "(Chords)"
  }

  <<
    \new ChordNames {
      \chordslist
    }
    \new Staff {
      % remove time signature, bar lines and bar numbers:
      % in version 2.16.0:
      \override Staff.TimeSignature #'stencil = ##f
      \override Staff.BarLine #'stencil = ##f
      \override Score.BarNumber #'stencil = ##f
      % or in version 2.17.17, you can write:
      %\omit Staff.TimeSignature
      %\omit Staff.BarLine
      %\omit Score.BarNumber
      \chordslist
    }
  >>

  \score {
    \new Staff { a b c' }
  }
}

(You can choose between a general (2.16) version and a 2.17-only version
and remove the other comments.)


HTH,
Joram


PS:
> Does anybody know if that is possible?

Almost everything is possible in LilyPond – the question in most cases
is: how ;)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]