lilypond-user
[Top][All Lists]
Advanced

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

Re: layout doesn't work as I expected


From: Aaron Hill
Subject: Re: layout doesn't work as I expected
Date: Tue, 04 Feb 2020 05:47:48 -0800
User-agent: Roundcube Webmail/1.4.2

On 2020-02-04 12:10 am, fcorvi wrote:
What is happening in that when I put the layout option after my score it doesn't affects nothing at all, when I put it after the pdf file will not be
generated.

If you include \midi within a \score without \layout, then you are instructing LilyPond to only generate MIDI output. To get both outputs, include at least an empty \layout within the \score:

%%%%
\version "2.18.2"

\score {
  \new Staff \relative c' { c4 d e2 }
  \layout {}
  \midi { \tempo 4 = 90 }
}
%%%%


-- Aaron Hill



reply via email to

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