Re: How to use diferente paper layouts in a \book

2012-06-15 Thread Karl Hammar
Alexandra:
 Nobody knows how to do it?
 
 2011/5/25 Alexandre Ficagna alr...@ibest.com.br:
  Hy all,
 
  I'm trying do create a score with the individual parts after the
  global one, but the global part in landscape and the individual parts
  in portrait style.
...

Why not two ly-files and then combine the ps/pdf's to one file?

Regards,
/Karl Hammar

---
Aspö Data
Lilla Aspö 148
S-742 94 Östhammar
Sweden
+46 173 140 57



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to use diferente paper layouts in a \book

2012-06-13 Thread ALEXANDRE FICAGNA
Nobody knows how to do it?

2011/5/25 Alexandre Ficagna alr...@ibest.com.br:
 Hy all,

 I'm trying do create a score with the individual parts after the
 global one, but the global part in landscape and the individual parts
 in portrait style.
 I'm using \book and \bookpart commands, doing this for the global part;
 \book {
    \paper {
       #(set-paper-size a4 'portrait)
     }
 ...
 and for the parts:
 \bookpart {
    \paper {
       #(set-paper-size a4 'portrait)
     }
 

 What should I do?

 Cheers,
 Alexandre


 --
 www.myspace.com/alexandreficagna



-- 
www.myspace.com/alexandreficagna

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to use diferente paper layouts in a \book

2012-06-13 Thread Federico Bruni

Il 13/06/2012 15:57, ALEXANDRE FICAGNA ha scritto:

Nobody knows how to do it?

2011/5/25 Alexandre Ficagnaalr...@ibest.com.br:

Hy all,

I'm trying do create a score with the individual parts after the
global one, but the global part in landscape and the individual parts
in portrait style.
I'm using \book and \bookpart commands, doing this for the global part;
\book {
\paper {
   #(set-paper-size a4 'portrait)
 }
...
and for the parts:
\bookpart {
\paper {
   #(set-paper-size a4 'portrait)
 }


What should I do?

Cheers,
Alexandre



Well, in the pasted example you used 'portrait twice :-)

And you forgot the  for paper sizes.
The following snippet works fine:

\version 2.15.40

% Default portrait orientation for implicit \book block
\paper {
  #(set-paper-size a4 'portrait)
}

\bookpart {
  \score {
\repeat unfold 20 { c1*4 }
  }
}


% Override default - use landscape
\bookpart {
  \paper {
#(set-paper-size a4 'landscape)
  }
  \score {
\repeat unfold 20 { c1*4 }
  }
}


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to use diferente paper layouts in a \book

2011-06-07 Thread Herre de Jonge

On 26/05/2011 02:49, Alexandre Ficagna wrote:

Hy all,

I'm trying do create a score with the individual parts after the
global one, but the global part in landscape and the individual parts
in portrait style.
I'm using \book and \bookpart commands, doing this for the global part;
\book {
 \paper {
#(set-paper-size a4 'portrait)
  }
...
and for the parts:
\bookpart {
 \paper {
#(set-paper-size a4 'portrait)
  }


What should I do?


You realise that you only use a4-portrait?

Take care,
  Herre

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


How to use diferente paper layouts in a \book

2011-05-25 Thread Alexandre Ficagna
Hy all,

I'm trying do create a score with the individual parts after the
global one, but the global part in landscape and the individual parts
in portrait style.
I'm using \book and \bookpart commands, doing this for the global part;
\book {
\paper {
   #(set-paper-size a4 'portrait)
 }
...
and for the parts:
\bookpart {
\paper {
   #(set-paper-size a4 'portrait)
 }


What should I do?

Cheers,
Alexandre


-- 
www.myspace.com/alexandreficagna

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user