Hi, lilyponders,
I code first 9 bars of solo + piano - strange : no notes displayed when compile.
Please refer to .png and .ly.  I am running v2.19.19I switch v2.18.2  - I 
encounter the same result.
Immanuel,Ming
\version "2.19.19"
\language "english"

\header {
  title = "求主教我如何禱告"
  subtitle = "Lord, Teach Me How To Pray"
  composer = "曲: 黄楨茂"
  poet = "詞 : 陳供生"
  % Remove default LilyPond tagline
  tagline = ##f
}

\paper {
  #(set-paper-size "letter")
}

\layout {
  \context {
    \Voice
    \consists "Melody_engraver"
    \override Stem #'neutral-direction = #'()
  }
}

global = {
  \key ef \major
  \time 4/4
  \tempo "Moderato" 4=100
}

sopranoVoice =  {
  \global
  \dynamicUp
  r1 r1 r1 r1 \break %m01-04
  r2 r4 bf4 |%m05
  ef'4. f8 g'8 ef'8 e'8. f'16 |%m06
  g'2. bf4 |%m07
  c'4. d'8 ef'8 f'8 e'8. c'16 |\break %m08
  b2. g'8 8 |%m09
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

right = \relative c'' {
  \global
  % Music follows here.
  
}

left = \relative c' {
  \global
  % Music follows here.
  
}

sopranoVoicePart = \new Staff \with {
  instrumentName = "S."
  shortInstrumentName = "S."
  midiInstrument = "choir aahs"
} { \sopranoVoice }
\addlyrics { \verse }

pianoPart = \new PianoStaff \with {
  instrumentName = "Pno."
  shortInstrumentName = "Pno."
} <<
  \new Staff = "right" \with {
    midiInstrument = "acoustic grand"
  } \right
  \new Staff = "left" \with {
    midiInstrument = "acoustic grand"
  } { \clef bass \left }
>>

\score {
  <<
    \sopranoVoicePart
    \pianoPart
  >>
  \layout { }
  \midi { }
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to