Re: Score layout - ragged bottom and page break?

2023-11-12 Thread Alasdair McAndrew
Thanks, Michael - that looks like the perfect answer.  Typical of me, I
seem to have explored every page in the documentation except for that one.

Thanks again,
Alasdair

On Mon, 13 Nov 2023, 1:04 am Michael Werner,  wrote:

> Hi Alasdair,
>
> On Sun, Nov 12, 2023 at 8:47 AM Alasdair McAndrew 
> wrote:
> 
>
>> How can I force each score with a book to have a last ragged bottom, and
>> each score beginning on a new page?
>>
>
> Might try putting each score into a \bookpart section. When I put multiple
> scores into a single PDF that's how I go about it - works quite well for
> me. Something like:
>
> \paper {
>   ::global paper settings ::
> }
>
> \book {
>   \bookpart {
> \paper {
>:: paper settings for just this score ::
> }
> \score {
>   :: the score ::
> }
>   }
>   \bookpart {
> :: and the next score, and so forth ::
>   }
> }
>
> One note - using \bookpart inserts a page break between parts, so no need
> for any explicit \pageBreak commands. For some more details have a look at:
>
> http://lilypond.org/doc/v2.24/Documentation/notation/multiple-scores-in-a-book
> --
> Michael
>
>


Re: Score layout - ragged bottom and page break?

2023-11-12 Thread Michael Werner
Hi Alasdair,

On Sun, Nov 12, 2023 at 8:47 AM Alasdair McAndrew  wrote:


> How can I force each score with a book to have a last ragged bottom, and
> each score beginning on a new page?
>

Might try putting each score into a \bookpart section. When I put multiple
scores into a single PDF that's how I go about it - works quite well for
me. Something like:

\paper {
  ::global paper settings ::
}

\book {
  \bookpart {
\paper {
   :: paper settings for just this score ::
}
\score {
  :: the score ::
}
  }
  \bookpart {
:: and the next score, and so forth ::
  }
}

One note - using \bookpart inserts a page break between parts, so no need
for any explicit \pageBreak commands. For some more details have a look at:
http://lilypond.org/doc/v2.24/Documentation/notation/multiple-scores-in-a-book
-- 
Michael


Score layout - ragged bottom and page break?

2023-11-12 Thread Alasdair McAndrew
Hello,

(Note: Lilypond v. 2.24.2, in Linux.)

I am setting a group of pieces; each piece is in its own score block.  I
want each score to start on a new page, and the final page in each score to
have a ragged-last-bottom, so that the systems are evenly spaced - these
are duets, and I like no more than 6 systems per a4 page.

I am managing this so far by having a pageBreak command between each score
block.

The trouble is that this seems to have the effect of filling each page
equally, and overriding the system-system-spacing variables I've set in the
paper block.

The only score which is properly set is the last one, which is not followed
by a pageBreak command.

I've tried putting "ragged-last-bottom = ##t" in the global layout block,
and in the layout block within a score, but it makes no difference.

How can I force each score with a book to have a last ragged bottom, and
each score beginning on a new page?

Many thanks,
Alasdair
-- 
Alasdair McAndrew (he/him)
mob: 0432 854 858

https://numbersandshapes.net


Score Layout, several questions

2015-04-06 Thread N. Andrew Walsh
Good morning,

I've been tasked with preparing the score of what will be a critical
edition of some liturgical works of a lesser-known 18th-century composer.
Because of the nature of the source (the composer was writing at a
monastery), the originals are engraved using single-press typesetting (ie,
each note is its own block, so staff-lines and whatnot aren't continuous),
so it's an interesting exercise in historical scores. However, I have some
questions about some aspects of using Lily to do this. Namely:

1) I'd really like to use the ScholarLY tools to add annotations to the
score, and I've managed to include it in my .ly file with the following:

--

\version 2.19.18


#(set-global-staff-size 13)


%%Include OpenLilyLib and init ScholarLY

\include openlilylib


\useLibrary Scholarly


\useModule scholarly.annotate


\paper {


 #(define fonts

(set-global-fonts

#:music emmentaler

#:brace emmentaler

#:roman Linux Libertine G

#:sans Linux Biolinum G

#:typewriter DejaVu Sans Mono

#:factor (/ staff-height pt 20 )))

---
(NB: I have the global-staff-size set way up at the top because of the
staff-height within the \paper block, which has to come after
set-global-staff-size, right?)
However, compiling throws an error at the \paper {  line, and then a
bunch more, like this from the log:
---
openLilyLib: library infrastructure successfully loaded.

/home/[$HOME]/.lilypond/openlilylib/ly/scholarly/annotate/__main__.ily:46:1:
error: syntax error, unexpected SCM_TOKEN, expecting '{'

#(define annotations '())

/home/[$HOME]/.lilypond/openlilylib/ly/scholarly/annotate/__main__.ily:51:1:
warning: openLilyLib: Module already loaded. Skipping
utility.rhythmic-location

\useModule utility.rhythmic-location
/home/[$DOCS]/transkription kayser/messen/messe 1/transkription kayser 1.
messe c-dur.ly:22:3: error: unrecognized string, not in text script or
\lyricmode
  indent = 1.5\cm
[SNIP]
/home/[$DOCS]/transkription kayser/messen/messe 1/transkription kayser 1.
messe c-dur.ly:12:8: error: errors found, ignoring music expression
\paper
   {

/home/[$DOCS]/transkription kayser/messen/messe 1/transkription kayser 1.
messe c-dur - kyrie.ly:13:8: error: wrong type for argument 1. Expecting
pitch, found c
\key
   c \major

--

Am I formatting something wrong in my file? Does incorporating openlilylib
introduce new ways of specifying the \paper block? Also, is there a way to
use scholarLY without producing a pdf in color? The end product has to be
b/w, for reasons that should become clear below.


2) Also, for this project, I have from the publisher an exemplar of their
typesetting standards. One of the things I notice is that they have an
almost pathological avoidance of beams crossing staff lines at an angle. To
avoid this, most measures with beams move them outside of the staff
entirely, and make the beam angle itself (if there is any) considerably
shallower. Is there a general setting I can set to achieve something
similar? I can't really convince the publisher to change their æsthetics,
and I only see options for setting stem length absolutely.


3) Lastly, is there a general way to increase space between systems on a
page? I only have room for two to a page, but there looks like about .5cm
free along the bottom margin. I'd prefer to spread the systems out from one
another a bit more; how can I do this?


Thanks for the help. I just started working with Lily last Friday, she
seems nice.


Cheers,


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


Re: Score Layout, several questions

2015-04-06 Thread N. Andrew Walsh
oh, heavens! I'm sorry, I didn't mean I was trying to reproduce them (and
yes, that's what I meant about the score: it looks like that, though with
oval noteheads. Just figuring out what printing technology they were using
would be interesting to me. I wonder if they were deliberately using older
types because of the liturgical nature of the material). I just meant it's
interesting work transcribing it into modern notation. No, I do intend for
the score to be a fully modern edition.

Anyway, no, I didn't mean to imply I actually wanted to reproduce that
notation. Just that it's fun (?) to read.

Thanks for the tips on Beam.damping. I'll fiddle around with it.

Cheers,

A

On Mon, Apr 6, 2015 at 3:22 PM, Phil Holmes m...@philholmes.net wrote:

  Perhaps something like the attached image?  FWIW when I set these, under
 _no circumstances_ do I try to replicate the non-continuous staff lines.

 --
 Phil Holmes



 - Original Message -
 *From:* Andrew Bernard andrew.bern...@gmail.com
 *To:* N. Andrew Walsh n.andrew.wa...@gmail.com
 *Cc:* lilypond-user@gnu.org
 *Sent:* Monday, April 06, 2015 2:14 PM
 *Subject:* Re: Score Layout, several questions

 Where you refer to:

 the originals are engraved using single-press typesetting (ie, each note
 is its own block, so staff-lines and whatnot aren't continuous), so it's an
 interesting exercise in historical scores.”

 Andrew


 On 6 April 2015 at 22:44:15, N. Andrew Walsh (n.andrew.wa...@gmail.com)
 wrote:

 I'm unsure what you mean by trying to engrave the gaps in the staff lines
 between the type sorts.

  --

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


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


Re: Score Layout, several questions

2015-04-06 Thread Andrew Bernard
Where you refer to:

the originals are engraved using single-press typesetting (ie, each note is 
its own block, so staff-lines and whatnot aren't continuous), so it's an 
interesting exercise in historical scores.”

Andrew


On 6 April 2015 at 22:44:15, N. Andrew Walsh (n.andrew.wa...@gmail.com) wrote:


I'm unsure what you mean by trying to engrave the gaps in the staff lines 
between the type sorts. 

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


Re: Score Layout, several questions

2015-04-06 Thread Mark Knoop
At 14:43 on 06 Apr 2015, N. Andrew Walsh wrote:
Thanks for the snippet. Do you know of any way to set that
*generally*? At the least, a way to set the difference between the
first and last Beam.positions values to be less than some maximum?

Try experimenting with different values of Beam.damping.

Documentation/internals/beam.html

-- 
Mark Knoop

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


Re: Score Layout, several questions

2015-04-06 Thread David Nalesnik
On Mon, Apr 6, 2015 at 8:22 AM, Phil Holmes m...@philholmes.net wrote:

  Perhaps something like the attached image?  FWIW when I set these, under
 _no circumstances_ do I try to replicate the non-continuous staff lines.

 --
 Phil Holmes



 - Original Message -
 *From:* Andrew Bernard andrew.bern...@gmail.com
 *To:* N. Andrew Walsh n.andrew.wa...@gmail.com
 *Cc:* lilypond-user@gnu.org
 *Sent:* Monday, April 06, 2015 2:14 PM
 *Subject:* Re: Score Layout, several questions

 Where you refer to:

 the originals are engraved using single-press typesetting (ie, each note
 is its own block, so staff-lines and whatnot aren't continuous), so it's an
 interesting exercise in historical scores.”

 Andrew


Not that I would do it either, but see the following for a possible
approach:

http://www.mail-archive.com/lilypond-user%40gnu.org/msg99423.html

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


Re: Score Layout, several questions

2015-04-06 Thread Andrew Bernard
Re beaming positions control:

An example snippet:

\version 2.19.17

treble = \relative c'' {
  \once \override Beam.positions = #'(-3 . -3)
  c8 e g a
  \once \override Beam.positions = #'(3 . 3)
  c, g e c
}

\score {
  \new Staff { \treble }
}

You seem to have jumped in the deep end! Welcome to lilypond!

Are you serious about trying to engrave the gaps in the staff lines between the 
type sorts? Or do I misunderstand?

Andrew

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


Re: Score Layout, several questions

2015-04-06 Thread David Nalesnik
On Mon, Apr 6, 2015 at 8:38 AM, David Nalesnik david.nales...@gmail.com
wrote:



 On Mon, Apr 6, 2015 at 8:22 AM, Phil Holmes m...@philholmes.net wrote:

  Perhaps something like the attached image?  FWIW when I set these,
 under _no circumstances_ do I try to replicate the non-continuous staff
 lines.

 --
 Phil Holmes



 - Original Message -
 *From:* Andrew Bernard andrew.bern...@gmail.com
 *To:* N. Andrew Walsh n.andrew.wa...@gmail.com
 *Cc:* lilypond-user@gnu.org
 *Sent:* Monday, April 06, 2015 2:14 PM
 *Subject:* Re: Score Layout, several questions

 Where you refer to:

 the originals are engraved using single-press typesetting (ie, each note
 is its own block, so staff-lines and whatnot aren't continuous), so it's an
 interesting exercise in historical scores.”

 Andrew


 Not that I would do it either, but see the following for a possible
 approach:

 http://www.mail-archive.com/lilypond-user%40gnu.org/msg99423.html



Of course, this following simple example reveals the flaws right away!

 \version 2.19.16

\new Staff 
  \repeat unfold 8 {
\startStaff s4 \stopStaff
  }
  {
\override Staff.StaffSymbol.stencil =
#(lambda (grob)
   (let ((st (ly:staff-symbol::print grob)))
 (ly:stencil-scale st 0.95 1)))
a4 a a a
a4 a a a
  }


%%%
How to deal with symbols that happen at the same time but are separated
horizontally--for example, a clef and a time signature?

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


Re: Score Layout, several questions

2015-04-06 Thread N. Andrew Walsh
Thanks for the snippet. Do you know of any way to set that *generally*? At
the least, a way to set the difference between the first and last
Beam.positions values to be less than some maximum?

I'm unsure what you mean by trying to engrave the gaps in the staff lines
between the type sorts.

Also, I fixed the errors I was getting with the ScholarLY module (I moved
those snippets to below the score blocks, and the problem went away).

Thanks for the help.

Cheers,

A

On Mon, Apr 6, 2015 at 2:15 PM, Andrew Bernard andrew.bern...@gmail.com
wrote:

 Re beaming positions control:

 An example snippet:

 \version 2.19.17

 treble = \relative c'' {
   \once \override Beam.positions = #'(-3 . -3)
   c8 e g a
   \once \override Beam.positions = #'(3 . 3)
   c, g e c
 }

 \score {
   \new Staff { \treble }
 }

 You seem to have jumped in the deep end! Welcome to lilypond!

 Are you serious about trying to engrave the gaps in the staff lines
 between the type sorts? Or do I misunderstand?

 Andrew


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


Re: Score Layout, several questions

2015-04-06 Thread Phil Holmes
Perhaps something like the attached image?  FWIW when I set these, under _no 
circumstances_ do I try to replicate the non-continuous staff lines.

--
Phil Holmes


  - Original Message - 
  From: Andrew Bernard 
  To: N. Andrew Walsh 
  Cc: lilypond-user@gnu.org 
  Sent: Monday, April 06, 2015 2:14 PM
  Subject: Re: Score Layout, several questions


  Where you refer to:


  the originals are engraved using single-press typesetting (ie, each note is 
its own block, so staff-lines and whatnot aren't continuous), so it's an 
interesting exercise in historical scores.”


  Andrew




  On 6 April 2015 at 22:44:15, N. Andrew Walsh (n.andrew.wa...@gmail.com) wrote:



  I'm unsure what you mean by trying to engrave the gaps in the staff lines 
between the type sorts. 




--


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


Re: Score Layout, several questions

2015-04-06 Thread Paul Morris
N. Andrew Walsh wrote
 3) Lastly, is there a general way to increase space between systems on a
 page? I only have room for two to a page, but there looks like about .5cm
 free along the bottom margin. I'd prefer to spread the systems out from
 one
 another a bit more; how can I do this?

You want to change the system-system-spacing settings:
http://lilypond.org/doc/v2.19/Documentation/notation/flexible-vertical-spacing-paper-variables

Since you're using openlilylib, see also:
https://github.com/openlilylib/openlilylib/tree/master/notation-snippets/scale-vertical-spacing

Cheers,
-Paul



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Score-Layout-several-questions-tp174100p174119.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Score Layout, several questions

2015-04-06 Thread Simon Albrecht

Am 06.04.2015 um 15:50 schrieb N. Andrew Walsh:
oh, heavens! I'm sorry, I didn't mean I was trying to reproduce them 
(and yes, that's what I meant about the score: it looks like that, 
though with oval noteheads. Just figuring out what printing technology 
they were using would be interesting to me. I wonder if they were 
deliberately using older types because of the liturgical nature of the 
material).
No, it’s just a matter of typesetting (with moveable types) being 
cheaper than engraving (in copper plates) at the time.

~ Simon

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


Re: Score layout in a separate file

2012-04-05 Thread David Raleigh Arnold
On Tue, 2012-04-03 at 15:17 +0200, Siska Ádám wrote:
 Dear List,
 
 
 is there a way to put the layout block for a score in a variable that lives 
 in a separate file? Unfortunately the following won't compile:
 

This does something similar:

http://www.openguitar.com/files/slyce.py

Regards, daveA



-- 
Guitar teaching materials and original music for all styles and levels.
Site: http://www.openguitar.com (()) eMail: d.raleigh.arn...@gmail.com
Contact: http://www.openguitar.com/contact.html


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


Score layout in a separate file

2012-04-03 Thread Siska Ádám
Dear List,


is there a way to put the layout block for a score in a variable that lives in 
a separate file? Unfortunately the following won't compile:



myMusic = \relative d' {
  d4 d d d
}

myLayout = \layout {
   \context {
\Staff
\remove Clef_engraver
  }
}

\score {
  \myMusic
  \myLayout
}



I tried several other ways to export the content of the layout block, but none 
of them succeeded. I'm writing parts of an orchestral piece and I'd like to 
include the layout definition for these scores in a separate file.


Thanks for any help,
Ádám


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


Re: Score layout in a separate file

2012-04-03 Thread Thomas Morley
Am 3. April 2012 15:17 schrieb Siska Ádám sa...@sadam.hu:
 Dear List,


 is there a way to put the layout block for a score in a variable that lives 
 in a separate file? Unfortunately the following won't compile:

 

 myMusic = \relative d' {
  d4 d d d
 }

 myLayout = \layout {
   \context {
    \Staff
    \remove Clef_engraver
  }
 }

 \score {
  \myMusic
  \myLayout
 }

 

 I tried several other ways to export the content of the layout block, but 
 none of them succeeded. I'm writing parts of an orchestral piece and I'd like 
 to include the layout definition for these scores in a separate file.


 Thanks for any help,
 Ádám

Hi,

try:

\layout { \myLayout }

Cheers,
  Harm

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


Re: Score layout in a separate file

2012-04-03 Thread Tim McNamara
On Apr 3, 2012, at 8:17 AM, Siska Ádám wrote:
 
 is there a way to put the layout block for a score in a variable that lives 
 in a separate file? Unfortunately the following won't compile:

have you tried using \include?
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Score layout in a separate file

2012-04-03 Thread Siska Ádám

On 2012.04.03., at 15:46, Thomas Morley wrote:

 Am 3. April 2012 15:17 schrieb Siska Ádám sa...@sadam.hu:
 Dear List,
 
 
 is there a way to put the layout block for a score in a variable that lives 
 in a separate file? Unfortunately the following won't compile:
 
 
 
 myMusic = \relative d' {
  d4 d d d
 }
 
 myLayout = \layout {
   \context {
\Staff
\remove Clef_engraver
  }
 }
 
 \score {
  \myMusic
  \myLayout
 }
 
 
 
 I tried several other ways to export the content of the layout block, but 
 none of them succeeded. I'm writing parts of an orchestral piece and I'd 
 like to include the layout definition for these scores in a separate file.
 
 
 Thanks for any help,
 Ádám
 
 Hi,
 
 try:
 
 \layout { \myLayout }
 
 Cheers,
  Harm

Hi,


thanks a lot, this works! Out of curiosity, could you or somebody on the list 
explain to me why this works? It is a bit weird to me, as I also tried to have 
the variable without the \layout in it (so that it was myLayout = \context { 
etc. } and then I used \layout { \myLayout } ), but that didn't work either. 
I'm just surprised that this solution (which reads at the end \layout { \layout 
{ etc. } } ) will compile...


Thank you,
Ádám


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


Re: Score layout in a separate file

2012-04-03 Thread Choan Gálvez

On 4/3/12 15:17 , Siska Ádám wrote:

Dear List,


is there a way to put the layout block for a score in a variable that
lives in a separate file? Unfortunately the following won't compile:



myMusic = \relative d' { d4 d d d }

myLayout = \layout { \context { \Staff \remove Clef_engraver } }

\score { \myMusic \myLayout }



I tried several other ways to export the content of the layout block,
but none of them succeeded. I'm writing parts of an orchestral piece
and I'd like to include the layout definition for these scores in a
separate file.


You must put the variable call inside a \layout block:

\score {
  \myMusic
  \layout {
\myLayout
  }
}

will work fine.

Best.
--
Choan Gálvez

Ukecosas. Los ukeleles que nos gustan, también para ti
Visítanos: http://ukecosas.es/
Degústanos en Facebook: http://facebook.com/ukecosas

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


Re: Score layout in a separate file

2012-04-03 Thread David Kastrup
Siska Ádám sa...@sadam.hu writes:

 On 2012.04.03., at 15:46, Thomas Morley wrote:

 Am 3. April 2012 15:17 schrieb Siska Ádám sa...@sadam.hu:
 Dear List,
 
 
 is there a way to put the layout block for a score in a variable that lives 
 in a separate file? Unfortunately the following won't compile:
 
 
 
 myMusic = \relative d' {
  d4 d d d
 }
 
 myLayout = \layout {
   \context {
\Staff
\remove Clef_engraver
  }
 }
 
 \score {
  \myMusic
  \myLayout
 }
 
 
 try:
 
 \layout { \myLayout }

 thanks a lot, this works! Out of curiosity, could you or somebody on
 the list explain to me why this works?

The LilyPond grammar in the appendices of the NR will show what to use
here.

 It is a bit weird to me, as I also tried to have the variable without
 the \layout in it (so that it was myLayout = \context { etc. } and
 then I used \layout { \myLayout } ), but that didn't work either. I'm
 just surprised that this solution (which reads at the end \layout {
 \layout { etc. } } ) will compile...

Variables in LilyPond are not textual entities but Scheme expressions.
Some keywords like \layout throw LilyPond into a mode, like one suitable
for creating output definitions, or drum parts or whatever.  And to
interpret such a variable, you sometimes need to be in the right mode
already (because the information _what_ kind of output definition is in
the variable created by \layout is not there).  Basically, when putting
stuff into a variable and reusing the result, you are safer off if you
consult the grammar when things go wrong.

-- 
David Kastrup


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


Re: again, full score layout problem

2011-04-04 Thread Janek Warchoł
Hi,

2011/4/4 胡海鹏 - Hu Haipeng hhpmu...@163.com

 Again for the full score pagination. A professor first tried to read a4 
 version,
 and he must use a magnifying glass. I then compiled the a3 version
 (the link below, containing all score/parts/code/midi files).
 He said that it's actually not the problem of paper size,
 since many large scores are printed in just a4 but look very clear.
 I'm puzzled, since Lilypond always produce the most beautiful and clear music.
 Please check my full score, and tell me what' wrong with the appearance.
 http://www.darajan2.com/douban/Haipeng/Celebration%20Overture.zip

I'm not familiar with large orchestral scores (honestly i haven't see
any in real life, only some on computer), but i have an idea: there is
a lot of unused vertical space in the score you posted - almost all
pages have 20% or more whitespace at the bottom. What font size have
you used on that a4 version? I tried 11.5 and it worked quite well -
there is less unused vertical space compared to what you posted (of
course at the expense of page count).
Do you have some example of good LilyPond-made orchestral score, so we
can compare it to this overture?
Also there might be one more thing - beam width. Contrary to line
thickness, relative beam width doesn't change with font size: because
of that beams are less and less distinct from staff lines when font
size gets smaller.

Hope that helps,
Janek

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


Re: again, full score layout problem

2011-04-04 Thread 胡海鹏 - Hu Haipeng
Thanks. I don't know whether Lilypond can accomplish the result like this:
http://imslp.org/wiki/6_Pieces_for_Large_Orchestra,_Op.6_(Webern,_Anton
  This is a real publishable layout, since there are no white spaces on the 
pages. I mentioned it in my post irregula French Score.

Haipeng

 



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


again, full score layout problem

2011-04-03 Thread 胡海鹏 - Hu Haipeng
Again for the full score pagination. A professor first tried to read a4 
version, and he must use a magnifying glass. I then compiled the a3 version 
(the link below, containing all score/parts/code/midi files. He said that it's 
actually not the problem of paper size, since many large scores are printed in 
just a4 but look very clear. I'm puzzled, since Lilypond always produce the 
most beautiful and clear music. Please check my full score, and tell me what' 
wrong with the appearance.
http://www.darajan2.com/douban/Haipeng/Celebration%20Overture.zip
Regards
Haipeng


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


Re: Score Layout / Page Breaks etc...

2006-01-14 Thread Graham Percival


On 7-Jan-06, at 5:58 PM, Trent Johnston wrote:

I'm looking at the 2.7 documentation online and under 10.1.11 Page 
breaking

the reference to adding piece is not there..


Thanks for the report; it's been added to CVS.

Cheers,
- Graham



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


Score Layout / Page Breaks etc...

2006-01-07 Thread Trent Johnston



Hello everyone,

I'm trying to pull all the various parts of a score 
and place them into one score. I've been experimenting with many different ways 
of putting a file together. The one thing I can't seem to do is make a page 
break. I've followed (I think -- well it looks right) the manual on combining 
several pieces to make a large one but the "breakbefore = ##t" command is always 
ignored. If I compile the example in the manual "10.1.13 Creating titles" and 
add the \header { breakbefore = ##t} to the second pieceit 
works.

Can anyone help am I overlooking 
anything?

Currently running Windows XP / 
2.7.26

Thanks in advance.

Trent

==
#(ly:set-option 'point-and-click #f)

\include "english.ly"

#(set-global-staff-size 16)

\paper { bottommargin = 2\cmleftmargin = 
2\cmraggedbottom = ##fraggedlastbottom = 
##flinewidth = 7\in }

\include "01Movt.ly"\include "02Movt.ly"\include 
"03Movt.ly"%\include "04Movt.ly"

\book {\header {title = "Sonata IV"composer = 
"Thomas Arne"}

\score {\new StaffGroup 
\ViolinIa\ViolinIIa\basfiga 
\Bassoa\midi 
{}\header { opus = "Op. 3 No. 2" }\layout 
{\context { \Score \override InstrumentName #'space-alist = 
#'((left-edge . (extra-space . 6)))} }}

\score {\new StaffGroup 
\ViolinIb\ViolinIIb\basfigb 
\Bassob \midi 
{}

\layout { }}

\score {\new StaffGroup 
\ViolinIc\ViolinIIc\basfigc 
\Bassoc \header { 
breakbefore = ##t }\midi 
{}\layout { }}

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


Re: Score Layout / Page Breaks etc...

2006-01-07 Thread Graham Percival


On 7-Jan-06, at 4:13 AM, Trent Johnston wrote:

I'm trying to pull all the various parts of a score and place them 
into one score. I've been experimenting with many different ways of 
putting a file together. The one thing I can't seem to do is make a 
page break. I've followed (I think -- well it looks right) the manual 
on combining several pieces to make a large one but the breakbefore = 
##t command is always ignored. If I compile the example in the manual 
10.1.13 Creating titles and add the \header { breakbefore = ##t} to 
the second piece it works.


breakbefore requires a piece field, ie
\header{
  breakbefore = ##t
  piece = 
}

I thought that I'd added that to the manual under bugs... if it isn't 
there, or if it's in the wrong place, could you let me know?


Thanks,
- Graham


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


Re: Score Layout / Page Breaks etc...

2006-01-07 Thread Trent Johnston
Thanks Graham.

I'm looking at the 2.7 documentation online and under 10.1.11 Page breaking
the reference to adding piece is not there..

Regards,

Trent
- Original Message - 
From: Graham Percival [EMAIL PROTECTED]
To: Trent Johnston [EMAIL PROTECTED]
Cc: lilypond-user@gnu.org
Sent: Sunday, January 08, 2006 12:46 PM
Subject: Re: Score Layout / Page Breaks etc...



On 7-Jan-06, at 4:13 AM, Trent Johnston wrote:

 I'm trying to pull all the various parts of a score and place them
 into one score. I've been experimenting with many different ways of
 putting a file together. The one thing I can't seem to do is make a
 page break. I've followed (I think -- well it looks right) the manual
 on combining several pieces to make a large one but the breakbefore =
 ##t command is always ignored. If I compile the example in the manual
 10.1.13 Creating titles and add the \header { breakbefore = ##t} to
 the second piece it works.

breakbefore requires a piece field, ie
\header{
   breakbefore = ##t
   piece = 
}

I thought that I'd added that to the manual under bugs... if it isn't
there, or if it's in the wrong place, could you let me know?

Thanks,
- Graham


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


Re: score layout

2005-11-11 Thread Nicolas Sceaux
Seng Liang  [EMAIL PROTECTED] writes:

 \version 2.7.12 
 \relative {

 \new ChoirStaff  
 \new GrandStaff 
 \new Staff  { \set Staff.instrument = Violins 1 c1 } 
 \new Staff  { \set Staff.instrument = Violins 2 c }  
 \new Staff  { \set Staff.instrument = Viola \clef alto c } 
 \new Staff  { \set Staff.instrument = Voice c } 
 \new Staff  { \set Staff.instrument = Bass \clef bass c, }   }

 As you can see, the score layout used is the old-styled layout, where
 the voice staff lies between the viola and the bass. This layout is
 perfect except for one thing; How do I connect the vertical barlines
 between the viola staff and the violin staff above? The barline break
 between the viola and voice staff, as well as between the voice and
 bass staff, is intended though. 

See http://lists.gnu.org/archive/html/bug-lilypond/2005-10/msg00042.html
for a possible solution.
nicolas


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


score layout

2005-11-09 Thread Seng Liang
Hi, I am typing a score for a work for voice and strings and I have a problem 
with the score layout. I am using Lilypond version 2.7.12 for Windows (98). 
Here is the file: 

\version 2.7.12 
\relative {

\new ChoirStaff  
\new GrandStaff 
\new Staff  { \set Staff.instrument = Violins 1 c1 } 
\new Staff  { \set Staff.instrument = Violins 2 c }  
\new Staff  { \set Staff.instrument = Viola \clef alto c } 
\new Staff  { \set Staff.instrument = Voice c } 
\new Staff  { \set Staff.instrument = Bass \clef bass c, }   }


As you can see, the score layout used is the old-styled layout, where the voice 
staff lies between the viola and the bass. This layout is perfect except for 
one thing; How do I connect the vertical barlines between the viola staff and 
the violin staff above? The barline break between the viola and voice staff, as 
well as between the voice and bass staff, is intended though.
Thank you very much.
Yours sincerely,
Seng Liang.




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


Linux: noteedit-2.3.0: score layout

2003-08-14 Thread Joerg Anders
Version 2.3.0 of the cost free (GPLed) LilyPond exporting 
musical score editor NoteEdit is available:

  http://rnvs.informatik.tu-chemnitz.de/~jan/noteedit/noteedit.html

New features:

- score layout : braces (piano staffs), brackets (staff groups),
 continued/discontinued bar rules.

 Note! NoteEdit does its best to export the score layout. But
 depending on your typesetting system the score layout possibly
 changes (see below)

- Hungarian GUI translation (thanks to Peter Breuer [EMAIL PROTECTED])
- end bar
- multi repeats 

 Note! The multi repeat influences the replay but the signature
 is only exported to MUP.  (Perhaps some gurus can sometimes
 explain to me how to export this into to different typesetting
 systems).

- UTF8 text coding in *.not files. This sould enable correct restore
   of Russian (Cyrillic), Greek, Hebrew, ... texts. 

 Note! It does not mean it exports Russian, (Cyrillic), Greek,
 Hebrew, ... texts to MusiXTeX, LilyPond, ABC music, ...! I'm afraid
 I'd need a native language speaker with some C++ programming
 knowledge to solve this.

 Note further! This implies a small version incompatibility if
 you wrote lyrices and titles containing non-ascii characters :-(
 Please correct them on NoteEDit score and store them again.

 Note futher! I'm not quite sure whether this disturbs the 
 KDE-2.x/Qt-2.x compatibility.

- the # -- B / B -- # tool influences only the selected part (if any)
  this is especially usful after Midi import if the score
  has some B and some # parts.

- bugs fixed, among them:
 + correct replay of dal segno al coda
 + correct MusiXTeX export of ending repeat close symbol
 + cleanup rests works (again)

Problems exporting score layout
===

MusiXTeX actually accepts either completely continued or completely
 discontinued bar rules. If you specify a mix of partial
 continued and partial discontinued bar rules NoteEdit
 produces some statements of the musixdbr.tex package
 by Rainer Dunker.  NoteEdit produces a warning and gives
 advice to install this package. Otherwise MusiXTeX will fail.

PMX  is a preprocessor to MusiXTeX and therefore the same problems apply.

ABC music cannot deal with nested braces in brackets. NoteEdit will warn you.

LilyPond  can deal with braces and brackets. It changes the staff
  rules according to some LilyPond inherent rules. I was
  told it is possible to break these rules.  But I assume
  they are there for good reasons. NoteEdit will warn you
  if a LilyPond rule will change the staff rule policy.

MUP   has no limitations.




-- 
J.Anders, Chemnitz, GERMANY ([EMAIL PROTECTED])


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user