lilypond-user
[Top][All Lists]
Advanced

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

RE: Musical theater headers


From: Daniel Rosen
Subject: RE: Musical theater headers
Date: Wed, 08 Jan 2014 18:17:51 +0000

> -----Original Message-----
> From: Paul Scott [mailto:address@hidden
> Sent: Wednesday, January 08, 2014 1:09 PM
> To: Daniel Rosen
> Cc: Kieren MacMillan; Lilypond-User Mailing List
> Subject: Re: Musical theater headers
> 
> I use \markup\fill-line{ "left" "center" "right" }
> 
> for what I think you want.  I have made substitute parts for parts with that
> same format.
> 
> HTH
> 
> Paul Scott

Yes, but they're not showing up the way I want them to:

> Whoops, I goofed on the second line--the arranger wanted the number on the 
> right side, not the left.
> 
> instrument | null  | date
> null       | piece | number
> null       | null  | composer

Here's something along the lines of what I've been trying:

\version "2.18.0"

\header {
  piece = "Piece"
  number = "#"
  instrument = "Instrument"
  date = "01/01/0101"
  composer = "Composer"
}

\paper {
  #(set-paper-size "letter")
  scoreTitleMarkup = \markup {
    \fill-line {
      \line {
        \fromproperty #'header:instrument
        \null
        \fromproperty #'header:date
      }
      \line {
        \null
        \fromproperty #'header:piece
        \fromproperty #'header:number
      }
      \line {
        \null
        \null
        \fromproperty #'header:composer
      }
    }
  }
}

{ c' } 



reply via email to

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