lilypond-user
[Top][All Lists]
Advanced

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

Re: Completing the Lilypond puzzle


From: lars prins
Subject: Re: Completing the Lilypond puzzle
Date: Sun, 16 Oct 2005 13:16:25 +0000

Hello Sven,

Thanks for your valuable reply. Yours was the only
reply that helped me. Otherwise, I got from "you
have to upgrade Lilypond" to "stop bickering", but
nothing else useful.

Your suggestion works like a charm, except for the
'C' which is still generated in the first bar. Since you
know obviously a lot more about Lilypond, do you
have an idea of how to get rid of the 'C'?

I tried this:

pages = {
 % 4 pages with 6 systems each
 \override Staff.TimeSignature #'style = #'()   % line added by me
 \repeat unfold 24 { s1 \break }
}

but this replaces the 'C' by 4/4. I would rather have
nothing at all.

I also tried adding

   \override TimeSignature #’transparent = ##t

in various places, with the \override and without.
It is either ignored, or Lilypond doesn't generate
anything at all, not even an error message.

Also, is stuff like "Staff.TimeSignature" documented
anywhere? I can only copy and paste from examples
and use trial and error sofar. I will stop bothering you
after this.

Thanks again, Lars


----
address@hidden









----Original Message Follows----
From: Sven Axelsson <address@hidden>
To: lars prins <address@hidden>
CC: address@hidden
Subject: Re: Completing the Lilypond puzzle
Date: Tue, 11 Oct 2005 13:11:40 +0200
MIME-Version: 1.0
Received: from qproxy.gmail.com ([72.14.204.207]) by mc10-f24.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Tue, 11 Oct 2005 04:11:41 -0700 Received: by qproxy.gmail.com with SMTP id z8so1361650qbc for <address@hidden>; Tue, 11 Oct 2005 04:11:40 -0700 (PDT) Received: by 10.65.38.13 with SMTP id q13mr3828424qbj; Tue, 11 Oct 2005 04:11:40 -0700 (PDT)
Received: by 10.64.193.11 with HTTP; Tue, 11 Oct 2005 04:11:40 -0700 (PDT)
X-Message-Info: JGTYoYF78jEHjJx36Oi8+Z3TmmkSEdPtfpLB7P/ybN8=
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=j84YYR0M95rcjaViUCRE2lFR+TucPqXwmz/BbNct1KdjEhgiRlOEFQCWKo3NA9ngBXKaoiLLesIVda5wO4D3qmJ5uvoh1y5i45wrnSmf2E3tlB4vAtq61hSMVT/yHclafZn0OdJqjEjXQkQi0DYYpI+0Cwwcg+8COycRkkp8mhE=
References: <address@hidden>
Return-Path: address@hidden
X-OriginalArrivalTime: 11 Oct 2005 11:11:42.0048 (UTC) FILETIME=[8EEE3E00:01C5CE54]

On 09/10/05, lars prins <address@hidden> wrote:
>
> Lilypond can do everything and lilypond is for everybody.
> Yet, I don't seem to be part of this equation somehow.
>
> I am getting very frustrated to get Lilypond to do the
> simplest thing, to create a PDF file with 4 pages of empty
> piano sheet music that I can use to jot notes on. That
> shouldn't be too difficult right?
>

No, it isn't very difficult. But I agree with you, the first step to
learning Lilypond is fairly steep. Now for your problem - here's
how I would do a bunch of blank sheets for piano music:

%%%%%%%%
pages = {
% 4 pages with 6 systems each
\repeat unfold 24 { s1 \break }
}

\new PianoStaff <<
\new Staff {\clef treble \pages}
\new Staff {\clef bass \pages}
>>

\layout {
indent = 0.0\cm
\context {
\Score
% Remove things we don't need.
\remove Bar_number_engraver
\remove Bar_engraver
\remove Time_signature_engraver
}
}

\paper {
% Tweak the dimensions so the desired number of systems fit.
hsize = 21\cm
vsize = 27.5\cm
leftmargin = 2\cm
linewidth = 17\cm
topmargin = 0.5\cm
bottommargin = 0\cm
% Set all of these to empty, else Lilypond will use them in
% the layout and that might mess up formatting.
tagline = ""
bookTitleMarkup = ""
scoreTitleMarkup = ""
oddHeaderMarkup = ""
evenHeaderMarkup = ""
}
%%%%%%%%
--
Sven Axelsson






reply via email to

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