lilypond-user
[Top][All Lists]
Advanced

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

Re: pdf not created


From: thedoctor81877
Subject: Re: pdf not created
Date: Tue, 25 Oct 2022 19:01:58 +0200 (CEST)

Ok - so I need to relpy all instead of just reply?

Thank you so much!

Michael Dykes

--
Sent with Tutanota, enjoy secure & ad-free emails.



Oct 25, 2022, 12:53 by jean@abou-samra.fr:
Hi,

I am adding back the list in copy. Please always include the list in your replies so that everyone can participate and benefit from the answers.


Le 25/10/2022 à 18:48, thedoctor81877@tutanota.com a écrit :
Hi Jean,

I am sorry to sound like I don't know what I'm doing, but this is what I have in my score block, and do I just place a "blnk" layout command, and where to I put it?

\score {


You are starting a \score block. Among the things a \score block can contain are

- a music _expression_
- a \layout block
- a \midi block

  \new ChoirStaff <<


Here begins your music _expression_, which is \new ChoirStaff << lots of stuff >>.


    \new Lyrics = "sopranos" \with {
      % this is needed for lyrics above a staff
      \override VerticalAxisGroup.staff-affinity = #DOWN

    }
    \new Staff = "women" <<
      \new Voice = "sopranos" {
        \voiceOne
        << \global \sopMusic >>
      }
      \new Voice = "altos" {
        \voiceTwo
        << \global \altoMusic >>
      }
    >>
    \new Lyrics = "altos"
    \new Lyrics = "tenors" \with {
      % this is needed for lyrics above a staff
      \override VerticalAxisGroup.staff-affinity = #DOWN
    }
    \new Staff = "men" <<
      \clef bass
      \new Voice = "tenors" {
        \voiceOne
        << \global \tenorMusic >>
      }
      \new Voice = "basses" {
        \voiceTwo << \global \bassMusic >>

      }
    >>
    \new Lyrics = "basses"
    \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
    \context Lyrics = "altos" \lyricsto "altos" \altoWords
    \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
    \context Lyrics = "basses" \lyricsto "basses" \bassWords
  >>


Here ends \new ChoirStaff << lots of stuff >>, i.e. the music _expression_ in the \score block.

  \midi {
    \set Staff.midiInstrument = #"string ensemble 1"
}


That was your \midi block. And just where I am writing this comment, after the end of the \midi block and before the closing brace of the \score block, you add the code :

\layout { }

}

Again, I apologize for not seeming to know what to do.



Best,
Jean


reply via email to

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