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