> On December 16, 2001 16:40, Gregory (Grisha) Trubetskoy wrote: > > Sorry if this is a faq, I did some searching and couldn't find a > > simple answer. > > > > How can I make output larger? > > \include "paper20.ly" > (I stick it at the top of the file; I suspect it can be anywhere) > > The default size is IIRC "paper16.ly" . There's 11, 13, 16, 20, 23, > and 26. Look in /usr/share/lilypond/ly/ .
Well, the default size is a staff height of 20pt, so if you want larger output, use paper23.ly or paper26.ly. If, on the other hand, you want a score with different sizes for different staves, I've attached an example file (bug fixed version of the file in input/test/). /Mats
\version "1.3.146" \score { \notes \relative c' < \context Voice { \context Staff \outputproperty #(make-type-checker 'staff-symbol-interface ) #'staff-space = #(/ 16 20) \property Staff.fontSize = #-1 \property Score.skipBars = ##t \dynamicUp \stemDown %\key gis \major c8 d [e f g a] b c \ff } \context Staff = VB { \dynamicDown c,,4 \ff c c c } > \paper { linewidth = -1. } }