Hello,

 

I want to format headers to produce this:

 

                                Woodland Sketches (%title)

 
E. MacDowell

 
Op. 51

 

                                        To a Wild Rose  (%subtitle for first
score)

\score

                                       Will 'o the Wisp (%subtitle for
second score)

\score

                 And so on.

 

Using a template at
http://lilypond.org/doc/v2.18/Documentation/notation/creating-titles-headers
-and-footers,

I can get everything but to the opus under the composer. My code is
attached. Warning it contains more than 10 lines.

 

Thank you for your kind attention.

 

Mark

\version "2.18.2"

\book {
  \paper {
    print-all-headers = ##t
  }
  \header {
    title = "Woodland Sketches"
    composer =  "E. MacDowell"
    opus = "Op. 51"
    tagline = ##f
  }
  \markup { \vspace #1 }
  \score {
    
      \new Staff { s1 }
      
    \header {
      composer = ##f
      title = ##f
      subtitle = "To a Wild Rose"        
    }
  }
  \score {
    
      \new Staff { s1 }
      
    \header {
      composer = ##f
      title = ##f
      subtitle = "Will o' the Wisp"     
    }
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to