Re: horizontal spacing issue with `keyCancellation`

2023-12-27 Thread Werner LEMBERG
Some days ago I wrote: > Consider this snippet. > > ```tex > cancellationFirst = > \override Score.BreakAlignment.break-align-orders = > #(grob-transformer 'break-align-orders > (lambda (grob orig) >(let ((vec (vector-copy orig)) >

horizontal spacing issue with `keyCancellation`

2023-12-22 Thread Werner LEMBERG
Consider this snippet. ```tex cancellationFirst = \override Score.BreakAlignment.break-align-orders = #(grob-transformer 'break-align-orders (lambda (grob orig) (let ((vec (vector-copy orig)) (middle '(key-cancellation

Re: Spacing issue after Mark and TextScript

2018-11-25 Thread David Sumbler
-Original Message- From: Thomas Morley To: Phil Holmes CC: David Sumbler , Pedro Pessoa < pedrops...@gmail.com>, lilypond-user Subject: Re: Spacing issue after Mark and TextScript Date: Sun, 25 Nov 2018 17:38:31 +0100 Am So., 25. Nov. 2018 um 16:09 Uhr schrieb Phil Holm

Re: Spacing issue after Mark and TextScript

2018-11-25 Thread Thomas Morley
Am So., 25. Nov. 2018 um 16:09 Uhr schrieb Phil Holmes : > > - Original Message - > From: "David Sumbler" > > > The parameters NonMusicalPaperColumn and suchlike have long been a > > mystery to me. If it can be done reasonably succinctly, could you > > perhaps explain what NonMusicalPaper

Re: Spacing issue after Mark and TextScript

2018-11-25 Thread Phil Holmes
- Original Message - From: "David Sumbler" The parameters NonMusicalPaperColumn and suchlike have long been a mystery to me. If it can be done reasonably succinctly, could you perhaps explain what NonMusicalPaperColumn.keep-inside-line #'() and PaperColumn.keep-inside-line #'() actual

Re: Spacing issue after Mark and TextScript

2018-11-25 Thread David Sumbler
-Original Message- From: Thomas Morley To: David Sumbler CC: pedrops...@gmail.com, lilypond-user Subject: Re: Spacing issue after Mark and TextScript Date: Sat, 24 Nov 2018 22:28:06 +0100 Am Fr., 23. Nov. 2018 um 15:28 Uhr schrieb David Sumbler < da...@aeolia.co

Re: Spacing issue after Mark and TextScript

2018-11-24 Thread Thomas Morley
' Am Sa., 24. Nov. 2018 um 22:28 Uhr schrieb Thomas Morley : > > Am Fr., 23. Nov. 2018 um 15:28 Uhr schrieb David Sumbler : > > > > -Original Message- > > From: David Sumbler > > Reply > > -To: da...@aeolia.co.uk > > To: lilypond-user@gn

Re: Spacing issue after Mark and TextScript

2018-11-24 Thread Thomas Morley
Am Fr., 23. Nov. 2018 um 15:28 Uhr schrieb David Sumbler : > > -Original Message- > From: David Sumbler > Reply > -To: da...@aeolia.co.uk > To: lilypond-user@gnu.org > Subject: Spacing issue after Mark and TextScript > Date: Wed, 21

Re: Spacing issue after Mark and TextScript

2018-11-23 Thread David Sumbler
-Original Message- From: David Sumbler Reply -To: da...@aeolia.co.uk To: lilypond-user@gnu.org Subject: Spacing issue after Mark and TextScript Date: Wed, 21 Nov 2018 12:24:29 + %%% \version "2.19.81" #(set-global-staff-size 12) indent = #0 { \textLength

Re: Spacing issue after Mark and TextScript

2018-11-21 Thread Pedro Pessoa
Hey David. Not sure if I got how you want it to be, but - with the \nobreak uncommented) - if you add tree more m's to the TextScript, it produces something which looks right. Don't know why. Pessoa mailing_Spacing_issue_after_Mark_and_TextScript.png

Spacing issue after Mark and TextScript

2018-11-21 Thread David Sumbler
%%% \version "2.19.81" #(set-global-staff-size 12) indent = #0 { \textLengthOn \time 5/4 r2 r4. \override Score.RehearsalMark.self-alignment-X = #-1 \override Score.RehearsalMark.font-size = #5 \mark \markup {"After the thirty-third encore, the Emperor arose."} \hide

Re: Spacing issue with magnifyStaff

2018-09-04 Thread Malte Meyn
Am 05.09.18 um 05:57 schrieb Simon Albrecht: On 03.09.2018 18:35, Malte Meyn wrote: \layout {   \context {     \Staff     \name "SmallStaff"     \alias "Staff"     fontSize = #(magnification->font-size 4/7)     \override StaffSymbol.staff-space = #4/<   }   \context {     \Score     \accepts "

Re: Spacing issue with magnifyStaff

2018-09-04 Thread Simon Albrecht
On 03.09.2018 18:35, Malte Meyn wrote: \layout {   \context {     \Staff     \name "SmallStaff"     \alias "Staff"     fontSize = #(magnification->font-size 4/7)     \override StaffSymbol.staff-space = #4/<   }   \context {     \Score     \accepts "SmallStaff"   }   \context {     \StaffGroup    

Re: Spacing issue with magnifyStaff

2018-09-03 Thread David Kastrup
Malte Meyn writes: > Am 03.09.18 um 18:28 schrieb foxfanfare: >> Is it possible to include those parameters in a small variable that I can >> call in all my projects? Something like >> >> smallInstrument = { >> fontSize = #(magnification->font-size 4/7) >> \override StaffSymbol.

Re: Spacing issue with magnifyStaff

2018-09-03 Thread foxfanfare
Malte Meyn-3 wrote > smallInstrument = \with { … } > > should do the trick :) Also, if you need that often, you can define > another context SmallStaff and use \new SmallStaff: > > \layout { >\context { > \Staff > \name "SmallStaff" > \alias "Staff" > fontSize = #(magnifi

Re: Spacing issue with magnifyStaff

2018-09-03 Thread Malte Meyn
Am 03.09.18 um 18:28 schrieb foxfanfare: Is it possible to include those parameters in a small variable that I can call in all my projects? Something like smallInstrument = { fontSize = #(magnification->font-size 4/7) \override StaffSymbol.staff-space = #4/7 } *** \new Staf

Re: Spacing issue with magnifyStaff

2018-09-03 Thread foxfanfare
Thank you both your advices. This solves a lot of issues I had and it is frankly way better than the magnifyStaff tool. Or I can't see where the differences are for the moment... Is it possible to include those parameters in a small variable that I can call in all my projects? Something like smal

Re: Spacing issue with magnifyStaff

2018-09-03 Thread Malte Meyn
Am 03.09.18 um 15:18 schrieb Torsten Hämmerle: Here's your original example setting fontSize and staff-space (using fontSize -4, the exact match of your 4/7 factor would have been -4.844129532345624644651815903391...):) If you want the exact 4/7 factor without using -4.8441..., you can replac

Re: Spacing issue with magnifyStaff

2018-09-03 Thread Torsten Hämmerle
Hi foxfanfare, That's exactly the reason why I never use \magnifyStaff. Just have a look at the treble clef and time signature sticking together in the upper stave, that's because if the lowest stave seems to govern the overall spacing. When needing single cue-size staves in a score (no matter wh

Re: Spacing issue with magnifyStaff

2018-09-03 Thread foxfanfare
Thanks for your answer Malte. Malte Meyn-3 wrote > Do you mean the too wide space directly before any accidentals? Yes exactly. In fact in the score I'm typesetting, I have several issues with spacing between the notes even when note related with magnifystaff... I may start another thread for th

Re: Spacing issue with magnifyStaff

2018-09-03 Thread Malte Meyn
Am 02.09.18 um 23:15 schrieb foxfanfare: Hi everyone, I'm working on a piece which need a small low staff for reference. I had several issues with \magnifyStaff since it would seem to work only in case the smaller staves are above a full-sized one (like in a chamber piece with a piano) (see: h

Re: Spacing issue with magnifyStaff

2018-09-03 Thread foxfanfare
I found in music-functions-init.ly the code for magnifyStaff. I can't fully understand it but this line intrigued me: %% this might cause problems until Issue 3990 is fixed \newSpacingSection Does it have something to do with my issue? -- Sent from: http://lilypond.1069038.n5.nabble.com/U

Spacing issue with magnifyStaff

2018-09-02 Thread foxfanfare
Hi everyone, I'm working on a piece which need a small low staff for reference. I had several issues with \magnifyStaff since it would seem to work only in case the smaller staves are above a full-sized one (like in a chamber piece with a piano) (see: http://lilypond.1069038.n5.nabble.com/TimeSig

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-29 Thread Eby Mani
Hi Kieren, Excellent, this is what i was looking for. Many thanks. Eby On Fri, 28/7/17, Kieren MacMillan wrote: Subject: Re: drawing brackets spanning multiple staves - spacing issue To: "Eby Mani" Cc: "Lilypond-User Mailing List&

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-28 Thread Kieren MacMillan
Hi Eby, > i want the Bracket at the first beat of the bar. That's wasn't clear to me from the code you provided (i.e., where the bracket was placed, the timing of the overrides, etc.) > Is the placement of brackets different on recent version of lilypond ? I don't think so… If you want the br

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-28 Thread Eby Mani
Thu, 27/7/17, Kieren MacMillan wrote: Subject: Re: drawing brackets spanning multiple staves - spacing issue To: "Eby Mani" Cc: "Lilypond-User Mailing List" Date: Thursday, 27 July, 2017, 5:27 PM Hi Eby, I hope the attached modified version of your snippet helps. N

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-27 Thread Kieren MacMillan
Hi Eby, > here is my code, the note column won't shift on the second staff, even if you > put Score.NoteColumn in the "left hand" section. I hope the attached modified version of your snippet helps. Note that I also made some other changes, to make the code more efficient, readable, etc. (Oh, a

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-27 Thread Eby Mani
>> \layout { } } ### On Tue, 25/7/17, Eby Mani wrote: Subject: Re: drawing brackets spanning multiple staves - spacing issue To: "Eby Mani" , "Thomas Morley" Cc: "lilypond-us

Re: drawing brackets spanning multiple staves - spacing issue

2017-07-23 Thread Thomas Morley
2017-07-23 19:39 GMT+02:00 Eby Mani : > Hi, I'm engraving some organ music and using the > LSR(http://lsr.di.unimi.it/LSR/Snippet?id=957) for drawing brackets spanning > multiple staves to denote a particular manual/registration. > > The problem now i'm facing, the LSR brackets are too close to t

drawing brackets spanning multiple staves - spacing issue

2017-07-23 Thread Eby Mani
Hi, I'm engraving some organ music and using the LSR(http://lsr.di.unimi.it/LSR/Snippet?id=957) for drawing brackets spanning multiple staves to denote a particular manual/registration. The problem now i'm facing, the LSR brackets are too close to the notes/barlines/key signatures/etc.. Movin

Re: Note spacing issue with accidental

2017-05-11 Thread Andrew Bernard
Hi Dan, It may or may not be appropriate for your needs, but you could consider using proportional spacing. Add something like this and you obtain a much more nicely controlled appearance. == snip \layout { \context { \Score proportionalNotationDuration = #(ly:make-moment 1/24

Re: Note spacing issue with accidental

2017-05-11 Thread DJF
> On May 11, 2017, at 1:40 PM, Knute Snortum wrote: > > I think you have to move the accidental to get the note to move. I don't > really like the way the following looks, but at least it's an example of > moving the accidental: > > rightTwo = \relative c' { > c4 \tuplet 3/2 { d4 \tweak Ac

Re: Note spacing issue with accidental

2017-05-11 Thread Knute Snortum
I think you have to move the accidental to get the note to move. I don't really like the way the following looks, but at least it's an example of moving the accidental: rightTwo = \relative c' { c4 \tuplet 3/2 { d4 \tweak Accidental.Y-offset -0.25 cis8 } } --- Knute Snortum (via Gmail) On Th

Note spacing issue with accidental

2017-05-11 Thread DJF
In the code below, the last eighth note in voice two of both the right and left hand are too far to the right (even slightly more so in the piece from which this excerpt is taken, shown in the attached image). I’ve fiddled with various values using \once \override NoteColumn.force-hshift and \

Spacing issue

2016-11-03 Thread mclaren
This particular score has a peculiar spacing issue. I used the recommended proportional spacing code given in the Lilypond manual, and I've fiddled with the make-moment values, but notes that should be exactly evenly spaced are still distinctly crimped up. Unless I haven't unde

Re: Another Lyrics spacing issue.

2016-03-19 Thread Thomas Morley
2016-03-18 4:57 GMT+01:00 Hwaen Ch'uqi : > Greetings, > > Yes, this is perfect! I am sheepish to admit that I do not quite > understand the solution. For example, if I were to leave out the first > measure in the code I submitted and then compiled, there appears a > large gap between the penultimat

Re: Another Lyrics spacing issue.

2016-03-19 Thread Hwaen Ch'uqi
Greetings, Yes, this is perfect! I am sheepish to admit that I do not quite understand the solution. For example, if I were to leave out the first measure in the code I submitted and then compiled, there appears a large gap between the penultimate and the final word of the spoken dialogue? Could y

Re: Another Lyrics spacing issue.

2016-03-19 Thread Thomas Morley
2016-03-16 19:54 GMT+01:00 Hwaen Ch'uqi : > Greetings All, > > I have been having another puzzling alignment issue involving > competing Lyrics contexts.. The result of this code is again that the > part to be shouted by the chorus prints before the spoken line of the > single character is finished

Another Lyrics spacing issue.

2016-03-19 Thread Hwaen Ch'uqi
Greetings All, I have been having another puzzling alignment issue involving competing Lyrics contexts.. The result of this code is again that the part to be shouted by the chorus prints before the spoken line of the single character is finished. I believe I have correctly attempted the spacing so

Re: Spacing Issue

2015-02-26 Thread Urs Liska
Am 26.02.2015 um 09:07 schrieb Joe Lowry: Hi, I'm a relatively inexperienced Lily Pond user, I need to have a page break after the first page (first movement) of my piece (for duo percussion). I am using the \break command after the last note that I want on the first page and I am properly get

Spacing Issue

2015-02-26 Thread Joe Lowry
Hi, I'm a relatively inexperienced Lily Pond user, I need to have a page break after the first page (first movement) of my piece (for duo percussion). I am using the \break command after the last note that I want on the first page and I am properly getting a line break. The problem is that I onl

Re: ChordNames context with bar lines - vertical spacing issue

2014-02-03 Thread Piotr
Noeck gmx.de> writes: > Hi Piotr, > > I think this could help you. This is exactly what I needed, thank you so much! Piotr ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: ChordNames context with bar lines - vertical spacing issue

2014-02-03 Thread Noeck
Hi Piotr, I think this could help you. Cheers, Joram \new ChordNames \with { \override BarLine #'bar-extent = #'(-2 . 2) \consists "Bar_engraver" } \chordmode { f1:maj7 f:7 bes:7 f:7 \break f1:maj7 f:7 bes:7 f:7 } % This reduces the distance between the lines to a minimum. % Please adj

ChordNames context with bar lines - vertical spacing issue

2014-02-03 Thread Piotr
Hello, I am trying to design a simple chord sheet in LilyPond - just chords and bar lines. I found this snippet at the repository, that enables me to do that without creating any staves: (http://lsr.dsi.unimi.it/LSR/Item?id=460) \new ChordNames \with { \override BarLine #'bar-extent = #'(-2 . 2)

anaother spacing issue

2013-12-23 Thread Karol Majewski
rn \clef treble f'16 g' e' g' d' g' e' g' f' g' e' g' f' g' d' g' \clef bass r e g c' e'4 r16 f a c' f'4 r16 d f h d'4 r16 e g h e'4 } \score { \new PianoStaff << \new Staf

Re: Petrucci clef/time signature spacing issue

2013-10-05 Thread Werner LEMBERG
>>> Entered as Issue 3598 >>> : Petrucci >>> clef/time sugnature space too large >>> and copied to the buglist for diligence. > > It seems kind of known: At least horizontal spacing is mentioned in > the docs: > http://lilypond.org/doc/v2.1

Re: Petrucci clef/time signature spacing issue

2013-10-04 Thread Noeck
Am 03.10.2013 21:02, schrieb Werner LEMBERG: >> Entered as Issue 3598 >> : Petrucci >> clef/time sugnature space too large >> and copied to the buglist for diligence. It seems kind of known: At least horizontal spacing is mentioned in the d

Re: Petrucci clef/time signature spacing issue

2013-10-03 Thread Werner LEMBERG
> Entered as Issue 3598 > : Petrucci > clef/time sugnature space too large > and copied to the buglist for diligence. Thanks! Werner ___ lilypond-user mailing list lilypond-user@gnu.org http

Re: Petrucci clef/time signature spacing issue

2013-10-03 Thread Colin Campbell
On 13-10-03 09:44 AM, Phil Holmes wrote: - Original Message - From: "Werner LEMBERG" To: Cc: Sent: Thursday, October 03, 2013 4:12 PM Subject: Re: Petrucci clef/time signature spacing issue I wonder why there is such a large gap between the clef and the time signatu

Re: Petrucci clef/time signature spacing issue

2013-10-03 Thread Phil Holmes
- Original Message - From: "Werner LEMBERG" To: Cc: Sent: Thursday, October 03, 2013 4:12 PM Subject: Re: Petrucci clef/time signature spacing issue I wonder why there is such a large gap between the clef and the time signature. Looks quite unnatural IMHO. Agreed

Re: Petrucci clef/time signature spacing issue

2013-10-03 Thread Werner LEMBERG
>> I wonder why there is such a large gap between the clef and the >> time signature. Looks quite unnatural IMHO. > > Agreed. I think it's because the time sig is always placed in the > same location, and the clef is narrow, so it looks bad. See > attached annotated example. Thanks for that.

Re: Petrucci clef/time signature spacing issue

2013-10-03 Thread Phil Holmes
- Original Message - From: "Werner LEMBERG" To: Sent: Thursday, October 03, 2013 12:42 PM Subject: Petrucci clef/time signature spacing issue If I say \override Score.TimeSignature.style = #'mensural \override NoteHead.style = #'petrucci \clef "petrucc

Petrucci clef/time signature spacing issue

2013-10-03 Thread Werner LEMBERG
If I say \override Score.TimeSignature.style = #'mensural \override NoteHead.style = #'petrucci \clef "petrucci-c3" \time 2/2 c'2 c'4 c'4 I wonder why there is such a large gap between the clef and the time signature. Looks quite unnatural IMHO. Werner <>___

Re: Markup spacing issue

2013-09-16 Thread Janek Warchoł
2013/9/16 Thomas Morley : > I didn't look at Janek's link, though you might be interested in the > markup-command 'compensate-indent' I wrote some time ago. > Shouldn't be too hard to adept it, though it works even right now. > > [lily snippet] I'm not sure if i fully understand what this code doe

Re: Markup spacing issue

2013-09-16 Thread Thomas Morley
2013/9/16 Noeck : > >> You most probably want to use \null instead of \hspace. And you >> probably will be interested in this snippet: >> http://github.com/openlilylib/snippets/blob/master/templates/adjustable-centered-stanzas.ily >> >> best, >> Janek > > That is a very useful snippet. Thanks! > >

Re: Markup spacing issue

2013-09-16 Thread Noeck
> You most probably want to use \null instead of \hspace. And you > probably will be interested in this snippet: > http://github.com/openlilylib/snippets/blob/master/templates/adjustable-centered-stanzas.ily > > best, > Janek That is a very useful snippet. Thanks! Cheers, Joram __

Re: Markup spacing issue

2013-09-16 Thread David Kastrup
Noeck writes: > Hi, > > is this a bug or intended: The following code worked nicely in 2.16 but > with the latest version, the two columns do not fill the whole page > width (what I would expect from fill-line). The 2.17 docs have a similar > example - I found no syntax change. > > \version "2.17

Re: Markup spacing issue

2013-09-16 Thread Janek Warchoł
2013/9/16 Noeck : > >> The way hspace works has been changed (corrected). In your example, >> omitting the hspace makes the text fill the line. > > A follow-up question: How can I push the columns a bit from the margins? > (Like I could with the \hspace commands before.) You most probably want to

Re: Markup spacing issue

2013-09-16 Thread Noeck
> > The way hspace works has been changed (corrected). In your example, > omitting the hspace makes the text fill the line. > > -- > Phil Holmes > Cool, that's even better (easier). In that case, the docs should be updated: http://www.lilypond.org/doc/v2.17/Documentation/notation/stanzas#pri

Re: Markup spacing issue

2013-09-16 Thread Phil Holmes
- Original Message - From: "Noeck" To: "lilypond-user" Sent: Monday, September 16, 2013 9:57 AM Subject: Markup spacing issue Hi, is this a bug or intended: The following code worked nicely in 2.16 but with the latest version, the two columns do not fill the wh

Markup spacing issue

2013-09-16 Thread Noeck
Hi, is this a bug or intended: The following code worked nicely in 2.16 but with the latest version, the two columns do not fill the whole page width (what I would expect from fill-line). The 2.17 docs have a similar example - I found no syntax change. \version "2.17.26" %"2.16.0" \markup \fill-

Re: A spacing issue

2013-07-29 Thread Rachael Thomas Carlson
On Tue, 2013-07-30 at 10:28 +1000, Nick Payne wrote: > This works with 2.17.23. I think the syntax is ok for 2.16.2. > > \version "2.16.2" > \layout { >indent=0\mm >ragged-right = ##t >\context { > \Score >\override StaffGrouper #'staffgroup-staff-spacing = >#'((b

Re: A spacing issue

2013-07-29 Thread Nick Payne
On 30/07/13 07:44, Rachael Thomas Carlson wrote: Hello: I am having an issue with spacing. I sent an email out a couple days ago without any responses (except my own responses). I thought that I had solved my \markup spacing issue but I was wrong. I am days away from finishing this score and

A spacing issue

2013-07-29 Thread Rachael Thomas Carlson
Hello: I am having an issue with spacing. I sent an email out a couple days ago without any responses (except my own responses). I thought that I had solved my \markup spacing issue but I was wrong. I am days away from finishing this score and I am at a bottleneck with this spacing issue. At

Re: Spacing issue with ledger lines and custom Marks context

2012-02-06 Thread Keith OHara
On Mon, 06 Feb 2012 03:14:14 -0800, James wrote: Shevek saultobin.com> writes: If RehearsalMarks and MetronomeMarks are displayed in a separate context, it is no longer necessary to use the side-position interface. So is this a bug? Not a bug in LilyPond. The user-created context, mar

Re: Spacing issue with ledger lines and custom Marks context

2012-02-06 Thread James
Kkeith/Shavek, On 5 February 2012 23:33, Keith OHara wrote: > Shevek saultobin.com> writes: > >>  The real fix is: >> \override RehearsalMark #'Y-offset = #0 >> \override MetronomeMark #'Y-offset = #0 >> >> If RehearsalMarks and >> MetronomeMarks are displayed in a separate context, it is no lon

Re: Spacing issue with ledger lines and custom Marks context

2012-02-05 Thread Keith OHara
Shevek saultobin.com> writes: > The real fix is: > \override RehearsalMark #'Y-offset = #0 > \override MetronomeMark #'Y-offset = #0 > > If RehearsalMarks and > MetronomeMarks are displayed in a separate context, it is no longer > necessary to use the side-position interface. Wonderful. I w

Re: Spacing issue with ledger lines and custom Marks context

2012-02-05 Thread Shevek
ly:side-position-interface::y-aligned-side. If RehearsalMarks and MetronomeMarks are displayed in a separate context, it is no longer necessary to use the side-position interface. -- View this message in context: http://old.nabble.com/Spacing-issue-with-ledger-lines-and-custom-Marks-context-tp33265399p332

Re: Spacing issue with ledger lines and custom Marks context

2012-02-05 Thread Shevek
RehearsalMark #'direction = #-1 \override MetronomeMark #'direction = #-1 -- View this message in context: http://old.nabble.com/Spacing-issue-with-ledger-lines-and-custom-Marks-context-tp33265399p33268366.html Sent from the Gnu - Lilypond - Use

Spacing issue with ledger lines and custom Marks context

2012-02-04 Thread Shevek
Hello, I posted a thread a week or two ago about the spacing issue with MetronomeMarks and multimeasure rests. The upshot of that thread was that I started using a custom context to display all my MetronomeMarks and RehearsalMarks. It works great, except that whenever there are ledger lines, the

Re: Spacing issue in 2.12.3

2011-03-22 Thread Francisco Vila
2011/3/22 Roland Lutz : > Hi, > > since I upgraded from Lilypond 2.10.33 (Debian lenny) to 2.12.3 (Debian > squeeze), any page processed by Lilypond is moved to the top of the page, > and the two staffs of a PianoStaff are much closer than before.  This can be > reproduced by any file; here is a mi

Re: between-system spacing issue

2010-05-08 Thread Xavier Scheuer
Here's another possible solution. ;-) 2010/5/8 Tom Cloyd : > Lilypond code: http://pastie.org/951290 > > This is four pages. I cannot cut it without losing the problem. > > Three solutions to the problem of getting enough space between > systems that it's clear which staff the stuff above and b

Re: between-system spacing issue

2010-05-08 Thread Kieren MacMillan
Hi Tom, > This is four pages. I cannot cut it without losing the problem. Here's one possible solution: use the following \paper { #(set-default-paper-size "letter" 'portrait) ragged-bottom = ##f ragged-last-bottom = ##f system-count = 18 max-systems-per-page = 6 left-margin = 0.6\in

between-system spacing issue

2010-05-08 Thread Tom Cloyd
Lilypond code: http://pastie.org/951290 This is four pages. I cannot cut it without losing the problem. Three solutions to the problem of getting enough space between systems that it's clear which staff the stuff above and below a staff belongs to - none of which work right. 1. When I contro

Re: vertical spacing issue

2010-01-18 Thread mike99
Sorry, I didn't notice that this is double posted. Post that got responses: http://old.nabble.com/Adding-Rehearsal-Marks%2C-v2.12.2-ts27204042.html -- View this message in context: http://old.nabble.com/vertical-spacing-issue-tp27197518p27217782.html Sent from the Gnu - Lilypond - User ma

Re: vertical spacing issue

2010-01-18 Thread mike99
there. Sorry I couldn't help more, as I'm not running the development version. -- View this message in context: http://old.nabble.com/vertical-spacing-issue-tp27197518p27217627.html Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

vertical spacing issue

2010-01-17 Thread Helge Kruse
Hello, I think, vertical spacing issues have been discussed often here. But even playing around with VerticalAxisGroup doesn't get my score in an acceptible design. The demerit is that the staves are pinned together while the dynamics line gets huge space. Can you get me a hint, what I have

Re: accidental spacing issue

2008-12-16 Thread Jonathan Kulp
Neil Puttock wrote: 2008/12/17 Jonathan Kulp : I still want the a-sharp to appear in the 2nd measure, but don't want the space occupied by the c-sharp. Using this "no-reset" workaround, the a-sharp disappears, too. Is there a way to apply this style using \override instead of "set"? if so th

Re: accidental spacing issue

2008-12-16 Thread Neil Puttock
2008/12/17 Jonathan Kulp : > I still want the a-sharp to appear in the 2nd measure, but don't want the > space occupied by the c-sharp. Using this "no-reset" workaround, the > a-sharp disappears, too. Is there a way to apply this style using \override > instead of "set"? if so then I could prob

Re: accidental spacing issue

2008-12-16 Thread Kieren MacMillan
Hi Jonathan, This was promising but didn't solve the problem because it also made the accidentals in the other voice disappear. Here's the context: Maybe the modified snippet (included below) will solve your problem? HTH, Kieren. %% \version "2.11.65" \new Staff \relative c'' {

Re: accidental spacing issue

2008-12-16 Thread Jonathan Kulp
Neil Puttock wrote: Hi Jon, 2008/12/16 Jonathan Kulp : Is there a way to make the invisible sharp symbol take up no space so that the whole chord moves to the left where it ought to be? There's a workaround for this mentioned in the bug tracker for issue #612. Regards, Neil This was prom

Re: accidental spacing issue

2008-12-16 Thread Neil Puttock
Hi Jon, 2008/12/16 Jonathan Kulp : > Is there a way to make the invisible sharp symbol take up no space so that > the whole chord moves to the left where it ought to be? There's a workaround for this mentioned in the bug tracker for issue #612. Regards, Neil __

accidental spacing issue

2008-12-16 Thread Jonathan Kulp
I'm having trouble making the spacing of accidentals right under the following circumstance, where there's a note with an accidental tied across a barline and a note in a voice below it also has an accidental. The tied note c-sharp doesn't have an accidental because it's tied, but the invisibl

Re: Spacing issue with accidental

2008-12-11 Thread Valentin Villenave
2008/12/11 Neil Puttock : > There's a workaround mentioned here: > http://code.google.com/p/lilypond/issues/detail?id=612 Oh, I thought this one looked familiar but i couldn't find it. Thanks Neil! Cheers, Valentin ___ lilypond-user mailing list lily

Re: Spacing issue with accidental

2008-12-11 Thread Neil Puttock
2008/12/11 Stefan Waler <[EMAIL PROTECTED]>: > Do you think there is any workaround? There's a workaround mentioned here: http://code.google.com/p/lilypond/issues/detail?id=612 Regards, Neil ___ lilypond-user mailing list lilypond-user@gnu.org http:/

Re: Spacing issue with accidental

2008-12-11 Thread Stefan Waler
Thanks for the analysis! Do you think there is any workaround? Any chance to get this fixed in 2.11? Stefan Mats Bengtsson wrote: It seems that the accidentals that are not printed in the new measure because of the tie, are not removed completely, but just made invisible still taking space.

Re: Spacing issue with accidental

2008-12-11 Thread Mats Bengtsson
It seems that the accidentals that are not printed in the new measure because of the tie, are not removed completely, but just made invisible still taking space. /Mats Valentin Villenave wrote: 2008/12/11 Stefan Waler <[EMAIL PROTECTED]>: I attach a sample script, please note the accid

Re: Spacing issue with accidental

2008-12-11 Thread Valentin Villenave
2008/12/11 Stefan Waler <[EMAIL PROTECTED]>: > I attach a sample script, please note the accidentials for 'ces' in the > second and for 'fes' in the forth bar. I tried to simplify the score very > much, but it seems as lilypond continues to calculate wrong spaces for every > further accidental of

Re: A spacing issue - moving a single note

2008-01-01 Thread Wilbert Berendsen
Op dinsdag 1 januari 2008, schreef Alasdair McAndrew: > I have a situation like > > f8.[ \clef alto c'16] > > where the alto clef and the extra beam on the 16th note overlap. I want to > keep the beam, as I want my typeset score to reflect as much as possible > the original 17th century manuscript

A spacing issue - moving a single note

2008-01-01 Thread Alasdair McAndrew
I have a situation like f8.[ \clef alto c'16] where the alto clef and the extra beam on the 16th note overlap. I want to keep the beam, as I want my typeset score to reflect as much as possible the original 17th century manuscript from which I'm working. So what I want to do is to move the c'16

Re: Vertical Lyric Spacing Issue

2007-02-19 Thread Joe Neeman
On Sunday 18 February 2007 13:38, Mark wrote: > In LilyPond 2.9.10, vertical spacing with lyrics worked perfectly for me. > I'm not sure which version it changed in. I use the current development > version (2.11.18). Now, however, there seems to be a certain amount of > vertical spacing that can

Re: Vertical Lyric Spacing Issue

2007-02-19 Thread Mats Bengtsson
There have already been some bug reports related to the vertical spacing of lyrics in the latest development versions. I recommend to use the latest stable version 2.10.x for any serious typesetting, unless you need any of the new features of the unstable 2.11.x version. /Mats Mark wrote: So

Re: Vertical Lyric Spacing Issue

2007-02-17 Thread Mark
Sorry, in my last post both of those links were the same. This is how it is now: http://www.nabble.com/file/5891/ComeThouFountOfEveryBlessing.pdf The other one was the way it used to be. Mark wrote: In LilyPond 2.9.10, vertical spacing with lyrics worked perfectly for me. I'm not sure which

Vertical Lyric Spacing Issue

2007-02-17 Thread Mark
In LilyPond 2.9.10, vertical spacing with lyrics worked perfectly for me. I'm not sure which version it changed in. I use the current development version (2.11.18). Now, however, there seems to be a certain amount of vertical spacing that cannot be removed (at least not in the same way). Follow