lilypond-user
[Top][All Lists]
Advanced

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

Re: Notation snippets


From: Malte Meyn
Subject: Re: Notation snippets
Date: Sun, 27 Dec 2015 16:18:38 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0


Am 27.12.2015 um 14:34 schrieb Jayaratna:
> Dear Lilipondians,
> 
> I am trying to make a page which shows a series of music symbols, each of
> them appearing on a standard staff of a given measure. So far I can print
> clefs and other symbols, but with no staff lines.
> 
> Any idea on how to make this?
> 
> Thank you,
> A

Your \layout blocks are messed up (don’t compile, MensuralStaff vs.
Staff). Did you want to do something like the following?

\version "2.19.33"

\paper {
  indent = 0
}

\markup {
  \fill-line {
    \score {
      \new Staff \with {
        \omit TimeSignature
      } {
        \clef violin
      }
    }
    \hspace #2
    \score {
      \new Staff \with {
        \omit Clef
      } {
        \time 4/4
      }
    }
  }
}



reply via email to

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