lilypond-user
[Top][All Lists]
Advanced

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

Re: Same score in 2 books having differents global-staff-size


From: Gilles THIBAULT
Subject: Re: Same score in 2 books having differents global-staff-size
Date: Sat, 17 Nov 2007 01:09:51 +0100

Here's a simple example:
\score{
\relative c'{c d e f }
\layout{ragged-right = ##t }
}

\score{
\relative c'{c d e f }
\layout{
 ragged-right = ##t
 #(layout-set-staff-size 26)}
}

Sorry. I have not been enough clear in my question.
The same score don't belong to the same .ly.
Something like that :

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%% file1.ly %%%%%%%
 #(set-global-staff-size 20)
  \score{
       \relative c'{c d e f }
       \layout{ragged-right = ##t }
    }
}
... => one page

%%%% file2.ly %%%%%%%%
    #(set-global-staff-size 32)

   %%% ..severall \score here
   %%%  => 5 pages
   \pageBreak     %% begin of page 6

   \score{            %%%  same music than in file1.ly
        \relative c'{c d e f }
        \layout{
               ragged-right = ##t
%% something to add here so that (file1.pdf page 1) = (file2.pdf page 6)
               %% same staff-size, same font size etc ....
               %% #(layout-set-staff-size 20) doen't do the job.
       }

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


Gilles








reply via email to

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