For some reason I can’t generate pdf and midi at the same time, I must % the
midi block or it won’t generate the pdf file. I got it working on other file
similar to this one, but I can’t find out why it won’t do the same with the
current one. I know it’s a lame question but I looked into the documentation
and couldn’t find the right answer.
All your help is appreciated.
Omer Katzir
%%%%%%%%%%%
\version "2.18.2"
\header {
title = “xxxx"
subsubtitle = “xxxx"
composer = "Omer Katzir"
tagline = "Omer Katzir http://omerkatzir.net"
}
upper = \relative c' {
\time 3/4
\tempo 4 = 96
\key c \major
\voiceOne
A a a a a
}
lower = \relative c {
\key c \major
\voiceTwo
C c c c c c
}
\score {
<<
\new StaffGroup = "tab with traditional" <<
\new Staff = "guitar traditional" <<
\clef "treble_8"
\context Voice = "upper" \upper
\context Voice = "lower" \lower
>>
\new TabStaff = "guitar tab" <<
\context TabVoice = "upper" \upper
\context TabVoice = "lower" \lower
>>
>>
>>
\midi { }
}
%%%%%%%%%%%%