lilypond-user
[Top][All Lists]
Advanced

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

Re: Multiple exercises on a single line


From: Malte Meyn
Subject: Re: Multiple exercises on a single line
Date: Wed, 7 Jun 2017 09:10:17 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1



Am 07.06.2017 um 08:31 schrieb Gianmaria Lari:
I would like to write short exercises of one measure consecutively on the
same line. Something similar to what I attached. How I can do it?

How about this? You can put \scores in \markups and use things like \column, \fill-line, \table. The indent changes the spacing between instrument name (= exercise number) and staff. Everything else should be self-explaining.

\version "2.19.56"

\paper {
  indent = 0.8\cm
}

\markup \fill-line {
  \score {
    \relative {
      \set Staff.instrumentName = "1."
      \clef bass
      \time 3/4
      c,4 e g
    }
  }
  \score {
    \relative {
      \set Staff.instrumentName = "2."
      \clef bass
      \numericTimeSignature
      c,4 e e c
    }
  }
  \score {
    \relative {
      \set Staff.instrumentName = "3."
      \clef bass
      \numericTimeSignature
      c,8_3 d_2 e--_3 f_4 g_2 f_4 e--_3 d_2
    }
  }
}



reply via email to

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