Re: Staff Spacing

2015-04-16 Thread Chris Trahan
Hi Kieren, Thanks. That got rid of the programming errors, however it's still not working properly. See attached screen shot. I'm now on 2.19.18. Chris Lilypond-Break-Problem-2.jpg -- View this message in con

Re: Staff Spacing

2015-04-15 Thread Chris Trahan
I still have the problem in version 2.19.18. I'm attaching another version of the example using line breaks instead of the edition-engraver commands. Mon_Pere-tiny-example-2.ly -- View this message in context:

Re: Staff Spacing

2015-04-15 Thread Chris Trahan
On Wed, Apr 15, 2015 at 3:12 PM, Trevor Daniels wrote: > > Chris Trahan wrote Wednesday, April 15, 2015 6:17 PM > Subject: Re: Staff Spacing > > > > I've finally been able to cull down the code where I can provide a tiny > > example and still get it to fail. &g

Re: Staff Spacing

2015-04-15 Thread Chris Trahan
I've finally been able to cull down the code where I can provide a tiny example and still get it to fail. I don't get any errors when I comment out the \RemoveEmptyStaves \override VerticalAxisGroup.remove-first = ##t in the \layout block. When I uncomment them, I get programming error

Re: Staff Spacing

2015-04-14 Thread Chris Trahan
Hi Kieren, I use bar checks so I'm sure that I don't have anything bleeding outside of a measure. The strange thing is the breaks are in the proper places when I comment out the \removeemptystaves statement but are not applied in places when I enable that statement. Do you know how to get in tou

Re: Staff Spacing

2015-04-13 Thread Chris Trahan
Hi Kieren, I did get the edition-engraver to work but it seems to have a problem with \removeemptystaves. It's not putting the breaks where I've specified. Have you experienced this? Thanks, Chris On Thu, Apr 9, 2015 at 9:54 AM, Kieren MacMillan < kieren_macmil...@sympatico.ca> wrote: > Hi Ch

Re: Staff Spacing

2015-04-09 Thread Chris Trahan
Kieren, Thanks. I've never used GitHub. I created an account but don't see how to download the files. When I right-click and save as, I get the html code. Chris On Thu, Apr 9, 2015 at 9:54 AM, Kieren MacMillan < kieren_macmil...@sympatico.ca> wrote: > Hi Chris, > > > Can you give me an example

Re: Staff Spacing

2015-04-08 Thread Chris Trahan
Kieren, Can you give me an example of how to use the \editionEngraver or show me where it is in the documentation? I searched Learning, Notation, Snippets, and Internal but I couldn't find it. Is it in version 2.18.2? Thanks, Chris On Wed, Apr 8, 2015 at 2:50 PM, Kieren MacMillan < kieren_macmil

Re: Staff Spacing

2015-04-08 Thread Chris Trahan
Abraham, I'm beginning to agree with you concerning \break. I'm finding that manual line breaks need to be in one staff and one staff only in a system. It seems to behave better when the line breaks are in the top staff of a system. Lilypond has done some strange things when I put breaks in other

Re: Staff Spacing

2015-04-08 Thread Chris Trahan
Abraham, While waiting on your reply, I experimented with the system-system-spacing settings. I got it to work. I had originally tried that setting but must not have been doing it right. This also moved all the systems on each page closer together, reducing the number of pages, which is what I wa

Re: Staff Spacing

2015-04-08 Thread Chris Trahan
Thanks Abraham. Chris -- View this message in context: http://lilypond.1069038.n5.nabble.com/Staff-Spacing-tp174177p174239.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists

Re: Staff Spacing

2015-04-08 Thread Chris Trahan
e explicit about the vertical location of the staves, but I imagine that's not what you want to do. - Abraham On Tue, Apr 7, 2015 at 12:33 PM, Chris Trahan [via Lilypond] <[hidden email] <http:///user/SendEmail.jtp?type=node&node=174222&i=0>> wrote: I have an SATB score w

Staff Spacing

2015-04-07 Thread Chris Trahan
I have an SATB score with interludes between verses. I've built the score in a choir staff group with 4 staves for each vocal range and a 5th staff for the interlude. I'm hiding empty staves for the parts that are not singing. For example, one part is sopranos and altos so the tenor and bass parts

Re: Vertical axis grob error

2015-02-10 Thread Chris Trahan
On Tue, Feb 10, 2015 at 5:00 PM, David Nalesnik wrote: > > > On Tue, Feb 10, 2015 at 4:30 PM, David Nalesnik > wrote: > >> Hi Chris, >> >> On Tue, Feb 10, 2015 at 3:56 PM, Chris Trahan >> wrote: >> >>> When I compile a score th

Vertical axis grob error

2015-02-10 Thread Chris Trahan
When I compile a score that I'm working on I'm getting the following errors. programming error: could not find this grob's vertical axis group in the vertical alignment continuing, cross fingers I can't seem to recreate the problem in a simple example and the source file is 533 lines long so I do

Repeats - Strange behavior??

2015-01-27 Thread Chris Trahan
I have two examples in the following code. The fist one shows a repeated section starting at measure 4. The second shows the same code, except that a double bar ends measure 3. In this case, the repeated section is not correct. Is this a bug or by design? \version "2.18.2" \language "english"

Re: How to get lyrics to skip measures?

2015-01-26 Thread Chris Trahan
On Mon, Jan 26, 2015 at 4:35 PM, Kieren MacMillan < kieren_macmil...@sympatico.ca> wrote: > Hi Chris, > > > I think that I need to somehow include spacers to skip over the whistle > part but I'm getting errors when I try that. > > \new Lyrics \lyricsto "Women" { > \verseOneLyrics > \repeat

How to get lyrics to skip measures?

2015-01-26 Thread Chris Trahan
I'm having a little trouble figuring out how to do this. I have a score where verse 1 is sung then there is a whistling interlude then verse two is sung. I think that I need to somehow include spacers to skip over the whistle part but I'm getting errors when I try that. Here is a short sample co

Re: Page Headers

2015-01-14 Thread Chris Trahan
erMarkup = \markup\on-the-fly #not-part-first-page > \fill-line { > \on-the-fly \print-page-number-check-first > \fromproperty #'page:page-number-string > \fromproperty #'header:title > \null > } > } > > \header { > title = "

Re: Page Headers

2015-01-13 Thread Chris Trahan
I figured it out. I went into the ly/titling-init.ly file and changed this line \on-the-fly #not-part-first-page \fromproperty #'header:instrument to this line \on-the-fly #not-part-first-page \fromproperty #'header:title in both the oddHeaderMarkup variable and the evenHeaderMarkup variable.

Re: Page Headers

2015-01-13 Thread Chris Trahan
Abraham, Yes, I have. The example is not very clear and it's only one example. Chris -- View this message in context: http://lilypond.1069038.n5.nabble.com/Page-Headers-tp170410p170428.html Sent from the User mailing list archive at Nabble.com. ___

Page Headers

2015-01-13 Thread Chris Trahan
I would like to put the title of a score as a page header starting on page 2. This would be on the same line as the page number and could be on the opposite side from the page number or centered on the page. I can't find out how to do this. I've searched the learning, notation, snippets, etc. I f

Re: Staff error

2014-12-31 Thread Chris Trahan
} > } > \new Staff { > \relative c'' { g4 a b c c b a g R1 R1 g4 a b c c b a g } > } > >> >>> >>> \layout { > \context { > \Staff \RemoveEmptyStaves > \override VerticalAxisGroup.remove-first = ##t} > } > } > > -- > Phil Hol

Staff error

2014-12-30 Thread Chris Trahan
I'm trying to write a choral score that has parts, then an interlude, then more parts, etc. When I code it like the following, I get what I'm looking for. \version "2.18.2" \language "english" % Verse 1 \new ChoirStaff << \new Staff { \relative c'' { c d e f } } \new Staff { \relat

Single Staff Spacing

2014-11-06 Thread Chris Trahan
Thanks to David Nalesnik and Jim Long for helping. I figured that the spacing had to go in the \paper section but I couldn't figure out what parameters to adjust. Chris ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/

Single Staff Spacing

2014-11-06 Thread Chris Trahan
f { \relative c'' { \key g \major \time 3/4 \autoBeamOff \partial 4 c8 d | e2.~ | e2 g,8 b | d4 d b | a8( g)~ g2~ | \break g4 e'8 e4 e8 | d2.~| d8 d, a'4 a | g2.~ | g8 c c4

Re: Increasing Space Between Arranger and 1st Staff

2014-08-07 Thread Chris Trahan
Thanks Samuel. That did the trick! Chris On Thu, Aug 7, 2014 at 1:05 PM, Samuel Speer wrote: > markup-system-spacing is an alist. > Try using > > markup-system-spacing #'padding = #3 > > > On Thu, Aug 7, 2014 at 12:00 PM, Chris Trahan > wrote: > >> Ho

Increasing Space Between Arranger and 1st Staff

2014-08-07 Thread Chris Trahan
How can I increase the space between the arranger field and the 1st staff? My score is using a ChoirStaff group. I've tried putting score-markup-spacing and/or markup-system-spacing in the \paper section but nothings working. I've been reading the manuals and am at a loss on how to do this. Tha

Re: Footnote Question

2014-08-07 Thread Chris Trahan
On Thu, Aug 7, 2014 at 11:45 AM, Chris Trahan wrote: > > > On Thu, Aug 7, 2014 at 11:42 AM, Samuel Speer > wrote: > >> On Thu, Aug 7, 2014 at 10:31 AM, Chris Trahan >> wrote: >> >>> >>> On Thu, Aug 7, 2014 at 11:05 AM, Samuel Speer >>&g

Re: Footnote Question

2014-08-07 Thread Chris Trahan
On Thu, Aug 7, 2014 at 11:42 AM, Samuel Speer wrote: > On Thu, Aug 7, 2014 at 10:31 AM, Chris Trahan > wrote: > >> >> On Thu, Aug 7, 2014 at 11:05 AM, Samuel Speer >> wrote: >> >>> You could copy the default footer and add [\fromproperty >>>

Footnote Question

2014-08-07 Thread Chris Trahan
re so that everyone in the group knows that they're looking at the correct version. Thanks, Chris Trahan ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user