lilypond-user
[Top][All Lists]
Advanced

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

Re: Tutorial


From: Gilles Sadowski
Subject: Re: Tutorial
Date: Fri, 15 Dec 2006 00:49:11 +0100
User-agent: Mutt/1.5.11+cvs20060403

Hi.

> 
> I had been trying to do that. I show you now a brief example modified  
> from the pdf tutorial:
> 
> Version 2.10.0
> 
> \paper{
> printallheaders=##t
> }
> 
> 
> 
> \Score
> \header {
> title = "Miniature"
> composer = "Igor Stravinsky"
> }
> { c' d' e' f' }
> }
> 
> \Score
> \header {
> title = "Second Miniature"
> composer = "Igor Stravinsky"
> }
> { a' b' c'' d'' }
> }
> 
> 
> I seeked to put the headers and the music "inside" the score blocks.  
> What am I doing wrong?
>

Try this:

%---
\score {
  \header {
    piece = "Miniature"
    opus = "Igor Stravinsky"
  }
  { c' d' e' f' }
}

\score {
  \header {
    piece = "Second Miniature"
    opus = "Igor Stravinsky"
  }
  { a' b' c'' d'' }
}
%---

See 
  
http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Creating-titles.html#Creating-titles
 


Best,
Gilles




reply via email to

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