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


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to