Re: Beam, break, slope

2025-06-01 Thread Knute Snortum
On Sun, Jun 1, 2025 at 9:04 AM Stefan Kägi wrote: > Hi Knute, > > thanks a lot! > Sorry must have overlooked your question and Jean's answer. > Easy to do. I sometimes forget that *I* was the one who asked the question a few years back! -- Knute Snortum

Re: Beam, break, slope

2025-06-01 Thread Stefan Kägi
slope of the beam of just one note > > before > > a line break? > > This doesn't look right to me: > > > > > > \version "2.24.4" > > > > \relative { > >   \time 6/8 > >   \alterBroken positions #'((-7 . -6) (-5 .

Re: Beam, break, slope

2025-06-01 Thread Knute Snortum
On Sun, Jun 1, 2025 at 12:22 AM Stefan Kägi wrote: > Hi, > > is there a way to control the slope of the beam of just one note before > a line break? > This doesn't look right to me: > > > \version "2.24.4" > > \relative { > \time 6/8 >

Beam, break, slope

2025-06-01 Thread Stefan Kägi
Hi, is there a way to control the slope of the beam of just one note before a line break? This doesn't look right to me: \version "2.24.4" \relative { \time 6/8 \alterBroken positions #'((-7 . -6) (-5 . -1)) Beam a a a a8 [ \break e' a g'8 c e,]

Re: \break between alternate endings

2025-04-27 Thread Carl Sorensen
Put the break in the first alternative. Carl On Sun, Apr 27, 2025, 11:17 AM bobr...@centrum.is wrote: > I tried to put a line break between alternate endings and got; warning: > More alternatives than repeats. Junking excess alternatives > > > Short example: > >

\break between alternate endings

2025-04-27 Thread bobr...@centrum.is
I tried to put a line break between alternate endings and got; warning: More alternatives than repeats. Junking excess alternatives Short example: %%% Begin Lily code %%% \version "2.24.4" \score { \relative c' { \repeat volta 2 { c d e f g a b c \alternat

Re: Spacing issue with openLilyLib break sets and MultiMeasureRests

2025-03-20 Thread Peter Crighton
On Tue, 18 Mar 2025 at 05:46, Peter Crighton wrote: > Hello all, > > has anybody familiar with openLilyLib come across this problem or would > know how to fix it? > I use the page-layout package in order to have access to break sets and > noticed the following issue: > &g

Spacing issue with openLilyLib break sets and MultiMeasureRests

2025-03-17 Thread Peter Crighton
Hello all, has anybody familiar with openLilyLib come across this problem or would know how to fix it? I use the page-layout package in order to have access to break sets and noticed the following issue: When using break sets, bars with a MultiMeasureRest take up more horizontal space than with

Re: Increase pace after \break

2025-02-02 Thread Valentin Petzel
Hi, > It would be ideal if I could shorten the staff before the \break > using something like ragged-right = ##t maybe something like this: ``` { 4 4 4 4 | 4 4 4 4 | \noBreak \cadenzaOn\stopStaff \textLengthOn s-\markup\hspace #25 \textLengthOff \startStaff \cadenzaOff \bre

Re: Increase pace after \break

2025-02-02 Thread Knute Snortum
On Sun, Feb 2, 2025 at 12:53 PM Zbyněk Burget via LilyPond user discussion < lilypond-user@gnu.org> wrote: > Hi, > I need something like this: > I have a \break somewhere in my code. I need a bigger gap between the > staves at that point. It would > be ideal if I could sho

Increase pace after \break

2025-02-02 Thread Zbyněk Burget via LilyPond user discussion
Hi, I need something like this: I have a \break somewhere in my code. I need a bigger gap between the staves at that point. It would be ideal if I could shorten the staff before the \break using something like ragged-right = ##t Can anyone help? Thanks -- Zbyněk Burget Mlýnská 397 798 26

Manual repeat and line break.

2024-12-25 Thread Walt North
r structurally otherwise I could have taken a simpler approach. \version "2.24.4" \layout {   \context {     \ChordNames     \override BarLine.bar-extent = #'(0 . 2)     \consists "Bar_engraver"   } } ch = \chordmode {   a1 a \break   \repeat volta 2 {     b b

Manual repeat and line break.

2024-12-24 Thread Walt North
stripped down examples of the problem I'm having. First is what is working from a basic flow point of view. Both code and screen shot. After that is what I was hoping to get to work using /break and a screen shot. But the \break is causing the start-repeat to be ignored (or hidden?).

Re: Key signature and clef break-visibility exception for page breaks?

2024-12-03 Thread Eric Benson
;change the rule for > this upcoming break, but then change it back immediately after". Otherwise > I have to put the undo setting somewhere after the beginning of the first > line on the new page, but not after the beginning of the second line on the > new page. If I could do bo

Re: Key signature and clef break-visibility exception for page breaks?

2024-12-03 Thread Eric Benson
OK, I see the problem. Since my page breaks are nearly always explicit, I could get the effect I need if there was a way to say "change the rule for this upcoming break, but then change it back immediately after". Otherwise I have to put the undo setting somewhere after the beginning of

Re: Key signature and clef break-visibility exception for page breaks?

2024-12-03 Thread David Kastrup
and fragile. I'd like to find a better >>> way to do this. Does anyone know of a way? Otherwise, I guess this >>> is a feature request! >> > > Any thoughts? Anyone? LilyPond breaks lines, and breaks pages after having established how the lines look. So this is n

Re: Key signature and clef break-visibility exception for page breaks?

2024-12-03 Thread Eric Benson
Any thoughts? Anyone? On Fri, Nov 29, 2024 at 1:13 PM Eric Benson wrote: > I'm making lead sheets, where, unlike common practice, the key signature > and clef are not usually shown at the beginning of each line. LilyPond > makes this easy to control, with > > \override Score.Clef.break-visibilit

Key signature and clef break-visibility exception for page breaks?

2024-11-29 Thread Eric Benson
I'm making lead sheets, where, unlike common practice, the key signature and clef are not usually shown at the beginning of each line. LilyPond makes this easy to control, with \override Score.Clef.break-visibility = #all-invisible and \override Score.KeySignature.break-visibility = #all-invisib

Re: How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread David Kastrup
tran li writes: > My current code is as follows: > > ```ly > > #(define* ((_hash-table-deep-ref getter) h keys #:optional (fallback #f)) >   (let* ((target h)) >     (for-each >   (lambda (key) >     (set! target (getter target key))) >   keys) >     target)) > > #(define hash-deep-re

Re: How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread Valentin Petzel
Hello, > However, in Scheme, returning a value inside a loop is troublesome. I > must first break the loop and then return the value. So what is the > correct way of doing this? Scheme does not really have loops. At least not in the sense you know it from procedural languages. `for

How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread tran li
I encountered a situation that need to break a loop while invoking Scheme code in LilyPond. Typically LilyPond offers the `for-each` function which simulates the for-loop in most programming languages. However, the `break` functionality isn't explicitly offered. There seems to be a fun

Re: suppress page break with bookparts

2024-10-05 Thread Walt North
That does not seem to affect the system separator.  Oh. well I only have a couple of cases where this is a problem  so I can work around it.  Someone pointed out that there is old case where someone asked for system-system spacing control at a score level.   Perhaps more control of the syst

Re: suppress page break with bookparts

2024-10-05 Thread Saul Tobin
It might be easier to get the output you want by modifying the spacing of the VerticalAxisGroup created by the Lyrics context. On Sat, Oct 5, 2024, 11:19 AM Knute Snortum wrote: > On Sat, Oct 5, 2024 at 7:51 AM Walt North wrote: > >> For example I was hoping to change the system system spacing

Re: suppress page break with bookparts

2024-10-05 Thread Knute Snortum
On Sat, Oct 5, 2024 at 7:51 AM Walt North wrote: > For example I was hoping to change the system system spacing and or the > system separator between different sections. These are in the paper block. > Different sections have have varying number of lyric stanza lines and the > automatic spacing

Re: suppress page break with bookparts

2024-10-05 Thread Walt North
post for one such example. On Fri, Oct 4, 2024, 10:18 AM Knute Snortum wrote: > On Fri, Oct 4, 2024 at 9:31 AM Walt North wrote: > >> I have tried \noPageBreak at various places but none seem to have any >> impact on the automatic page break between book parts (\bookpart).. &

Re: suppress page break with bookparts

2024-10-04 Thread Knute Snortum
On Fri, Oct 4, 2024 at 9:31 AM Walt North wrote: > I have tried \noPageBreak at various places but none seem to have any > impact on the automatic page break between book parts (\bookpart).. > Ah yes, book parts force a page break between parts. Can you use just \scores? Fo

Re: suppress page break with bookparts

2024-10-04 Thread Walt North
I have tried \noPageBreak at various places but none seem to have any impact on the automatic page break between book parts (\bookpart).. On 10/2/2024 10:55 AM, Knute Snortum wrote: On Wed, Oct 2, 2024 at 7:10 AM Walt North wrote: I have some use cases where I may want to change one or

Re: suppress page break with bookparts

2024-10-02 Thread Knute Snortum
On Wed, Oct 2, 2024 at 7:10 AM Walt North wrote: > I have some use cases where I may want to change one or more \paper block > values for some system lines. I tried \bookpart but that is forcing page > breaks. > >- Is there anyway to suppress the page break? > > Try \no

Re: suppress page break with bookparts

2024-10-02 Thread Walt North
. * Is there anyway to suppress the page break? * Is there anyway to temporarily change some \paper values? Below is minimum example using the system separate as an example.  The result spreads across two pages. Thanks, Walt North \version "2.24.4" ch = \chordmode { c1 c c c } lyA =

suppress page break with bookparts

2024-10-02 Thread Walt North
I have some use cases where I may want to change one or more \paper block values for some system lines.  I tried \bookpart but that is forcing page breaks. * Is there anyway to suppress the page break? * Is there anyway to temporarily change some \paper values? Below is minimum example

Re: Spontini line break slurs

2024-06-16 Thread Paolo Prete
This has already been reported some time ago: https://github.com/paopre/Spontini/issues/18 You can bypass it by simply using two shapes: % \version "2.24.0" \include "../lib/ly/jssvg.ly" \score { \relative c' { c d e << {s8\jsShape "1" &

Spontini line break slurs

2024-06-16 Thread bobr...@centrum.is
I think I may have run across a bug/limitation of Spontini. I was adjusting slurs. When I adjusted one that occurred over a line break I got unexpected results. I eventually figured out that only the part before the line break was changing even if I only moved the control points of the slur

Re: Empty chord construct and \break.

2024-05-01 Thread Thomas Morley
eetings, >>> > >>> > I am trying to typeset a stack of spoken lines above a multimeasure rest. >>> > This works fine when preceded by notes in the same system. However, when >>> > it follows a forced break, the output is not so desirable. Can anyone

Re: Empty chord construct and \break.

2024-04-28 Thread Hwaen Ch'uqi
Morley > wrote: > >> Am So., 28. Apr. 2024 um 06:25 Uhr schrieb Hwaen Ch'uqi < >> hwaench...@gmail.com>: >> > >> > Greetings, >> > >> > I am trying to typeset a stack of spoken lines above a multimeasure >> rest. This works fin

Re: Empty chord construct and \break.

2024-04-28 Thread Hwaen Ch'uqi
ing to typeset a stack of spoken lines above a multimeasure > rest. This works fine when preceded by notes in the same system. However, > when it follows a forced break, the output is not so desirable. Can anyone > explain what I am missing? MWE below. > > > > \version "2.24

Re: Empty chord construct and \break.

2024-04-28 Thread Thomas Morley
Am So., 28. Apr. 2024 um 06:25 Uhr schrieb Hwaen Ch'uqi : > > Greetings, > > I am trying to typeset a stack of spoken lines above a multimeasure rest. > This works fine when preceded by notes in the same system. However, when it > follows a forced break, the output i

Empty chord construct and \break.

2024-04-27 Thread Hwaen Ch'uqi
Greetings, I am trying to typeset a stack of spoken lines above a multimeasure rest. This works fine when preceded by notes in the same system. However, when it follows a forced break, the output is not so desirable. Can anyone explain what I am missing? MWE below. \version "2.24.3&quo

Re: Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
>> The easy question. The fourth line of the snippet reads: >>(PI_OVER_180 (/ (atan2 1 1) 34)) >> Surely that “34” should be “45”. > > Did you try changing it? ;) Yes. It breaks things slightly. I need to dive further down the rabbit-hole to work out why. >> The more difficult question. Thi

Re: Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kieren MacMillan
Hi Kevin, > I have two questions about this snippet: You forgot to include the snippet or a link! :) But I assume you mean https://lilypond.org/doc/v2.25/Documentation/snippets/vocal-music_003a-adding-indicators-to-staves-which-get-split-after-a-break > The easy question. The fourth l

Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
I have two questions about this snippet: The easy question. The fourth line of the snippet reads: (PI_OVER_180 (/ (atan2 1 1) 34)) Surely that “34” should be “45”. The more difficult question. This snippet adds two arrows to the bar line at the end of the staff. I have a case where there is a

Re: tied sharps after line break

2024-03-03 Thread Martin Tarenskeen
Ah I see. Yes that's the one. Op zondag 3 maart 2024 om 18:21:59 +00:00:00 schreef Werner LEMBERG : 2. LilyPond's default behaviour in this situation is (in my opinion) sub-optimal. It's a bug known since 15 years... Werner

Re: tied sharps after line break

2024-03-03 Thread Werner LEMBERG
> 2. LilyPond's default behaviour in this situation is (in my opinion) > sub-optimal. It's a bug known since 15 years... https://gitlab.com/lilypond/lilypond/-/issues/649 Werner

Re: tied sharps after line break

2024-03-03 Thread Martin Tarenskeen
Op zondag 3 maart 2024 om 18:58:45 +01:00:00 schreef Hans Aikema : Does not yet cover the case Martin was looking for - omitting the second accidental in a situation of a line-break on a tied accidental. Can be done however by an explicit \omit, which should be only \once, because otherwise

Re: tied sharps after line break

2024-03-03 Thread Hans Aikema
Does not yet cover the case Martin was looking for - omitting the second accidental in a situation of a line-break on a tied accidental. Can be done however by an explicit \omit, which should be only \once, because otherwise it would omit accidentals from that point onwards. The correct

Re: tied sharps after line break

2024-03-03 Thread Damian leGassick
bumped into a situation similar to this tiny example (In the real score the linebreak happened at such a situation without a forced \break but the result was the same):\relative c' {c4 c c cis ~ |\breakcis cis cis d |}the sharp sign in the 2nd bar is printed twice. I am not su

Re: tied sharps after line break

2024-03-03 Thread Martin Tarenskeen
Op zondag 3 maart 2024 om 18:33:26 +01:00:00 schreef Hans Aikema : On 3 Mar 2024, at 17:26, Martin Tarenskeen wrote:  Hi LilyPonders, I bumped into a situation similar to this tiny example (In the real score the linebreak happened at such a situation without a forced \break but the

Re: tied sharps after line break

2024-03-03 Thread Hans Aikema
> On 3 Mar 2024, at 17:26, Martin Tarenskeen wrote: > >  > Hi LilyPonders, > > I bumped into a situation similar to this tiny example (In the real score the > linebreak happened at such a situation without a forced \break but the result > was the same): > &g

tied sharps after line break

2024-03-03 Thread Martin Tarenskeen
Hi LilyPonders, I bumped into a situation similar to this tiny example (In the real score the linebreak happened at such a situation without a forced \break but the result was the same): \relative c' { c4 c c *cis* *~* | \break *cis* *cis* cis d | } the sharp sign in the 2nd b

strange `break-align-symbols` behaviour

2023-12-03 Thread Werner LEMBERG
ture, key-signature } { \override Score.MetronomeMark.break-align-symbols = #'(time-signature key-signature) \music } \paper { ragged-right = ##f } ``` I don't understand why the addition of `key-signature` to the `break-align-symbols` list makes 'T-note' left-align to the bar line — the

Re: Extra space before line break before ossia staff

2023-11-28 Thread Jean Abou Samra
> Is this a bug? Yes , see https://gitlab.com/lilypond/lilypond/-/issues/4263 signature.asc Description: This is a digitally signed message part

Re: Extra space before line break before ossia staff

2023-11-28 Thread Ole V. Villumsen
Solved with \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible \version "2.24.3" \layout { ragged-right = ##t } mainKey = { \key es \major } \new StaffGroup { \new Staff = main \relative { \mainKey g'1 | \break << { g1 }

Extra space before line break before ossia staff

2023-11-28 Thread Ole V. Villumsen
It seems to me that when an ossia staff (or similar supplementary staff) happens to begin at a line break, Lilypond meaninglessly sets space apart for a key signature before the line break even though there is no key signature printed there. Is this a bug? Is there a workaround? The output

Re: Score layout - ragged bottom and page break?

2023-11-12 Thread Alasdair McAndrew
} > \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
, 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

Re: Y-offset of dynamic text after break

2023-10-22 Thread Jean Abou Samra
Le dimanche 22 octobre 2023 à 13:48 -0700, Knute Snortum a écrit : > Is it true then that using extra-offset in these situations are the only way > to move the dynamic text? No, because there are still limits on how close vertical axis groups can get even without considering their outlines. Try \t

Re: Y-offset of dynamic text after break

2023-10-22 Thread Knute Snortum
o its baseline, > which is the VerticalAxisGroup of the Dynamics context. Without \break, > the VerticalAxisGroup contains two dynamics, "f" and "p", with "p" offset > compared to "f", which forces them to be at different positions. With > \break

Re: Y-offset of dynamic text after break

2023-10-22 Thread Jean Abou Samra
Hi, The DynamicText's Y-offset controls its position relative to its baseline, which is the VerticalAxisGroup of the Dynamics context. Without `\break`, the VerticalAxisGroup contains two dynamics, "f" and "p", with "p" offset compared to "f", w

Y-offset of dynamic text after break

2023-10-21 Thread Knute Snortum
Hi, everyone. I have a question for you, more than a need for a solution. It involves tweaking the Y-offset of a dynamic text after a break. Here is some code to illustrate what I mean: %%% \version "2.24.2" rh = \relative { c'4 4 4 4 | f,4 4 4 4 | f'4 4 4 4 | } lh =

Re: Beam slope across break

2023-08-26 Thread Knute Snortum
Thank you! -- Knute Snortum On Sat, Aug 26, 2023 at 1:23 AM Jean Abou Samra wrote: > > In short, is there a way to control the slope of the beam after the > break, or > > some other way to deal with the situation? > > \alterBroken positions #'((-6.5 . -3.5) (-3.5 . -1)) Beam > > >

Re: Beam slope across break

2023-08-26 Thread Jean Abou Samra
> In short, is there a way to control the slope of the beam after the break, or > some other way to deal with the situation?   \alterBroken positions #'((-6.5 . -3.5) (-3.5 . -1)) Beam signature.asc Description: This is a digitally signed message part

Beam slope across break

2023-08-25 Thread Knute Snortum
long on the second part of the beam. I have attached a PNG displaying the behavior with the code that produced it below. The first score shows how the default beam positions after the break don't look good, and the second shows my attempt to fix the situation. In short, is there a way to c

Re: Staff switch over page break spoils vertical spacing

2023-07-09 Thread Vaughan McAlley
On Sun, 9 Jul 2023 at 13:10, Jean Abou Samra wrote: > Le samedi 08 juillet 2023 à 17:44 +1000, Vaughan McAlley a écrit : > > When a staff-switch line goes over a page break, the first system in the > next page is stretched and may cover the next system. In the example here, > it

Re: Staff switch over page break spoils vertical spacing

2023-07-08 Thread Saul Tobin
; When a staff-switch line goes over a page break, the first system in the > next page is stretched and may cover the next system. In the example here, > it nearly touches, but in a full score the top system is stretched beyond > the bottom of the page. > > In the wild, a system may stret

Re: Staff switch over page break spoils vertical spacing

2023-07-08 Thread Jean Abou Samra
Le samedi 08 juillet 2023 à 17:44 +1000, Vaughan McAlley a écrit : > When a staff-switch line goes over a page break, the first system in the next > page is stretched and may cover the next system. In the example here, it > nearly touches, but in a full score the top system is stretched b

Staff switch over page break spoils vertical spacing

2023-07-08 Thread Vaughan McAlley
Hi, When a staff-switch line goes over a page break, the first system in the next page is stretched and may cover the next system. In the example here, it nearly touches, but in a full score the top system is stretched beyond the bottom of the page. In the wild, a system may stretch over the

Re: Non-local page-break oddities

2023-04-25 Thread Joel C. Salomon
determine what exactly is causing the bad page-breaking results, maybe you are using the optimal-page-turn algorithm for example. Thanks for reminding me about the various page break algorithms.   I’d found that when I last had a chance to work on this project

Re: Non-local page-break oddities

2023-04-24 Thread Jean Abou Samra
Le lundi 24 avril 2023 à 23:33 -0400, Joel C. Salomon a écrit : > I’m getting close to finished with my first Lilypond project, a book of some > 30 scores.  I tried building the `\book` section piecemeal, including a > handful of scores and tweaking the page breaks, and then another batch, and

Re: Non-local page-break oddities

2023-04-24 Thread William Rehwinkel via LilyPond user discussion
Dear Joel, I think that using multiple bookparts is a perfect strategy for this document based on this example, in which each score should nicely start on a new page. Without any minimal examples, it is hard to determine what exactly is causing the bad page-breaking results, maybe you are us

Non-local page-break oddities

2023-04-24 Thread Joel C. Salomon
I’m getting close to finished with my first Lilypond project, a book of some 30 scores. I tried building the `\book` section piecemeal, including a handful of scores and tweaking the page breaks, and then another batch, and so on. \book { \scoreI \pageBreak \scoreII \pageBreak \scoreIII

Re: Coda without line break

2023-04-15 Thread Michael Werner
Hi John, On Sat, Apr 15, 2023 at 7:03 AM John McWilliam wrote: > Hi, > > The enclosed attachment illustrates a Coda including a > line break, however: > > Well, actually it's illustrating two entirely separate scores that happen to be on the same page. The

Coda without line break

2023-04-15 Thread John McWilliam
Hi,    The enclosed attachment illustrates a Coda including a line break, however:  I want to remove the line break and have the Coda on line 1 keeping the jump text between the Main  and the Coda. Also, there should some space between the jump text and the start of the coda.I would

Re: Lilypond-book-preamble introducing page break after custom header

2023-03-15 Thread Jean Abou Samra
Le mercredi 15 mars 2023 à 22:49 +0100, Jean Abou Samra a écrit : > - > use `-dseparate-page-formats=pdf` if you want to get one output file per page > (or per system if also using lilypond-book-preamble.ly), > > > - > use `-dtall-page-formats=pdf` if you want to get squashed pages. P.S. Can

Re: Lilypond-book-preamble introducing page break after custom header

2023-03-15 Thread Jean Abou Samra
Le mercredi 15 mars 2023 à 17:32 -0400, Fr. Samuel Springuel a écrit : > The attached file compiles differently under 2.22 and 2.24: 2.24 introduces a > page break that isn’t present in 2.22.  This is causing some havoc in my > lyluatex tool chain.  Any idea what’s causing the problem a

Lilypond-book-preamble introducing page break after custom header

2023-03-15 Thread Fr. Samuel Springuel
The attached file compiles differently under 2.22 and 2.24: 2.24 introduces a page break that isn’t present in 2.22. This is causing some havoc in my lyluatex tool chain. Any idea what’s causing the problem and how to fix it? convert-ly doesn’t change anything in the file when upgrading the

Re: changing ottavation text after line break

2023-02-17 Thread Xavier Scheuer
On Fri, 17 Feb 2023 at 19:26, Immanuel Asmus wrote: > > Hello, > > I’d like to have an OttavaBracket with ottavation "8", but after a line > break, the ottavation should read "(8)". I cannot figure out whether > this can be achieved with \alterBroken,

changing ottavation text after line break

2023-02-17 Thread Immanuel Asmus
Hello, I’d like to have an OttavaBracket with ottavation "8", but after a line break, the ottavation should read "(8)". I cannot figure out whether this can be achieved with \alterBroken, since ottavation is not a feature of OttavaBracket. I read in th

Re: Clef change after end-repeat before break -- how?

2023-01-28 Thread Jean Abou Samra
>> Under 2.22 I do not get extra space. > > That’s still more curious. On 2.22.2 I get a warning > that the break is overwritten by another event, so we > don’t get the line break that I had specified and wanted. It's expected. 2.22 doesn't accept mid-measure breaks

Re: Clef change after end-repeat before break -- how?

2023-01-28 Thread Jean Abou Samra
On 28/01/2023 06:52, Ole V. Villumsen wrote: > Thanks, everyone, for your contributions. > > First of all Jean. Your code gives me exactly what I wanted. I haven’t > learned to use the internals, but see here that it’s useful. > >> Not sure, but my guess is that LilyPond might be trying to make

Re: Clef change after end-repeat before break -- how?

2023-01-28 Thread Jean Abou Samra
On 28/01/2023 16:51, David Kastrup wrote: > Jean Abou Samra writes: > >>> Le 28 janv. 2023 à 08:01, Darren Ng a écrit : >>> >>> [subject] How to define a macro that expands to a percussion "pitch"? >> >> >> It may be worth noting that LilyPond does not have macros, only >> variables and regular

Re: Clef change after end-repeat before break -- how?

2023-01-28 Thread Ole V. Villumsen
Furthermore, for the record, the same trick also works in the case where there is no break after the end-repeat sign. In this case the second of the three inner lists in Score.BreakAlignment.break-align-orders governs the order. So I want to modify both the 1st and the 2nd list. From the

Re: Clef change after end-repeat before break -- how?

2023-01-27 Thread Ole V. Villumsen
o not get extra space. That’s still more curious. On 2.22.2 I get a warning that the break is overwritten by another event, so we don’t get the line break that I had specified and wanted. @Ralph Palmer, you may have forgot to put content into your message? At least none arrived here. Best, Ole

RE: Clef change after end-repeat before break -- how?

2023-01-27 Thread Mark Stephen Mrotek
: Clef change after end-repeat before break -- how? Hi, I am typesetting a movement with a repeat and a clef change right after the repeat. I have a suitable line break where the repeat ends and the clef change happens. Default Lilypond sets the new clef within the repeat, before the end-repeat

RE: Clef change after end-repeat before break -- how?

2023-01-27 Thread Mark Stephen Mrotek
Subject: Clef change after end-repeat before break -- how? Hi, I am typesetting a movement with a repeat and a clef change right after the repeat. I have a suitable line break where the repeat ends and the clef change happens. Default Lilypond sets the new clef within the repeat, before the end-repeat

Re: Clef change after end-repeat before break -- how?

2023-01-27 Thread Jean Abou Samra
On 27/01/2023 22:35, Ole V. Villumsen wrote: > Hi, I am typesetting a movement with a repeat and a clef change right after > the repeat. I have a suitable line break where the repeat ends and the clef > change happens. Default Lilypond sets the new clef within the repeat, before

Re: Clef change after end-repeat before break -- how?

2023-01-27 Thread Ralph Palmer
On Fri, Jan 27, 2023 at 1:36 PM Ole V. Villumsen < ole.villum...@protonmail.ch> wrote: > Hi, I am typesetting a movement with a repeat and a clef change right > after the repeat. I have a suitable line break where the repeat ends and > the clef change happens. Default Lilypond se

Clef change after end-repeat before break -- how?

2023-01-27 Thread Ole V. Villumsen
Hi, I am typesetting a movement with a repeat and a clef change right after the repeat. I have a suitable line break where the repeat ends and the clef change happens. Default Lilypond sets the new clef within the repeat, before the end-repeat sign, which I don’t want and find meaningless in my

Re: Repost: LP 2.24.0 segno repeat where coda break is in the middle of a repeat volta block

2023-01-24 Thread Laurie Savage
Thank you, Kenneth, for posting this, you beat me to it. I'm editing lead sheets for a couple of ensembles and have run into the same issue. I have used the segno structure for the repeat and inserted \coda manually. I couldn't work out how to automate it with the \alternatives { { } { } } structur

Re: LP 2.24.0 segno repeat where coda break is in the middle of a repeat volta block

2023-01-22 Thread Kenneth Wolcott
Hi David; Thank you so much for reminding me that there are ways to reduce the size of the pdf, decreasing the size to reduce the pain of downloading a huge attachment. Ken On Sun, Jan 22, 2023 at 8:35 AM David Wright wrote: > > On Sat 21 Jan 2023 at 15:51:16 (-0800), Kenneth Wolcott wrote: >

Re: LP 2.24.0 segno repeat where coda break is in the middle of a repeat volta block

2023-01-22 Thread David Wright
On Sat 21 Jan 2023 at 15:51:16 (-0800), Kenneth Wolcott wrote: > Using Lilypond 2.24.0, I engraved "Memory" (from "Cats") using the > example published in the Hal Leonard Easy Piano Songs book (the pdf > file generated from photos from this book are huge). I displayed your PDF at 60% size, and too

Re: MetronomeMark and break-visibility

2022-11-01 Thread Thomas Morley
gt; > > { > >b1 > >\override Score.RehearsalMark.break-visibility = ##(#t #f #f) > >\mark \default > >\break > >b > > } > > > > Alas, the same for _Metronome_Mark fails, the MetronomeMark is not > > printed at all: > > > > { &

Re: MetronomeMark and break-visibility

2022-11-01 Thread Jean Abou Samra
Le 01/11/2022 à 12:55, Thomas Morley a écrit : Hi, the following code for _Rehearsal_Mark works as expected, i.e. the RehearsalMark is printed at end of line: { b1 \override Score.RehearsalMark.break-visibility = ##(#t #f #f) \mark \default \break b } Alas, the same for

MetronomeMark and break-visibility

2022-11-01 Thread Thomas Morley
Hi, the following code for _Rehearsal_Mark works as expected, i.e. the RehearsalMark is printed at end of line: { b1 \override Score.RehearsalMark.break-visibility = ##(#t #f #f) \mark \default \break b } Alas, the same for _Metronome_Mark fails, the MetronomeMark is not printed at

Re: Tie almost invisible before line break

2022-09-17 Thread Knute Snortum
> https://gitlab.com/lilypond/lilypond/-/issues/298 > > The workaround is increasing minimum-length. > > > \version "2.23.12" > > \paper { >ragged-right = ##t >indent = 0 > } > > \relative { >\voiceOne >d''8( c4 b a

Re: Tie almost invisible before line break

2022-09-17 Thread Jean Abou Samra
Le 17/09/2022 à 20:24, Knute Snortum a écrit : I have run into a situation that may be a bug or it may be I'm not doing something correctly. I have a \voiceOne note at a line break where the tie becomes nearly invisible. %%% \version "2.23.12" \paper { ragged-right = ##

Tie almost invisible before line break

2022-09-17 Thread Knute Snortum
I have run into a situation that may be a bug or it may be I'm not doing something correctly. I have a \voiceOne note at a line break where the tie becomes nearly invisible. %%% \version "2.23.12" \paper { ragged-right = ##t indent = 0 } \relative { \voiceOne d'

Re: warning: forced break was overridden by some other event, should you be using bar checks?

2022-05-24 Thread Kenneth Wolcott
a number of reasons why a break > > is disabled, and the information will come from different > > sources depending on the cause. It might be possible, > > though. My own take, however, would be to make \break > > override all kinds of restrictions altogether and > > ju

Re: warning: forced break was overridden by some other event, should you be using bar checks?

2022-05-24 Thread Jean Abou Samra
Le 13/01/2022 à 00:00, Jean Abou Samra a écrit : There is no position information in the diagnostic just because it is a bit inconvenient to do internally, as there can be a number of reasons why a break is disabled, and the information will come from different sources depending on the cause. It

Re: text spanner around a line break restates the text, this is not wanted

2022-03-23 Thread Kenneth Wolcott
Hi Xavier; Thank you. Why is it so obvious when somebody points out what you do not see? :-( \facepalm :-( It seems (mostly) correct now. How do you get the text spanner to display all the way to the end of the bar? I'll look at the manual again to try to find out how I missed that

Re: text spanner around a line break restates the text, this is not wanted

2022-03-23 Thread Xavier Scheuer
On Wed, 23 Mar 2022 at 20:39, Kenneth Wolcott wrote: > > I missed some pertinent code: bars 37-42; enclosed below. > > (snip) > Hello, You have \stopTextSpan in measure 38, so it ends in measure 38. Furthermore you have Moderato in measure 39, do you really want the TextSpanner to continue until

  1   2   3   4   5   6   7   8   9   10   >