Re: Hide Notes but display Accidental

2022-11-17 Thread Lukas-Fabian Moser
Hi Raj, probably easiest: \version "2.22.0" \language english \header {   tagline = ##f } \score {   \new Staff \with { \omit TimeSignature } {     \set Staff.midiInstrument = "Acoustic Grand Piano"     \key c \major     \time 5/1     \clef bass     \hideNotes     \undo \hide Accidental  % <

Re: Hide Notes but display Accidental

2022-11-17 Thread Rip _Mus
Good morning, take a look: % \version "2.22.0" \include "english.ly" newHideNotes = { \override NoteHead.transparent = ##t \override NoteHead.no-ledgers = ##t %optional \override Stem.transparent = ##t } \header { tagline = "" } \score { \new Staff \with {\remove "Time_signature_engraver" }

comparing crashes in 2.23.81 with 2.23.14 and 2.22.1

2022-11-17 Thread Jeff Olson
The attached score generator hints that the crashes in these three releases may be different manifestations of the same 32-bit address limit. A previous thread (https://lists.gnu.org/archive/html/lilypond-user/2022-11/msg00189.html) indicated a fixed was being worked for "exited with return

Hide Notes but display Accidental

2022-11-17 Thread Rajesh Baskar
Hi Everyone, I want to hide all the notes but display it's accidental. I can do the opposite of it by using \hidenotes and \omit Accidental. I want to achieve something like the below image. Please help. Image \version "2.22.0" \include "english.ly" \header { tagline = "" } \score {\new S

Getting grob Y position (spacing error)

2022-11-17 Thread Gregory Evans
Hi lilypond users, I have a question about getting the Y position of a grob. I saw this question has been asked previously but I could not find if it had been answered. In the following example, an after-line-breaking function is defined such that no change on the output should occur. The grob is o

Re: Flexible lyric alignment,Re: Flexible lyric alignment

2022-11-17 Thread David Kastrup
Jean Abou Samra writes: > Le 17/11/2022 à 23:01, Werner LEMBERG a écrit : > But how do you take into account the constraints from lyrics here? > That is the whole problem. They should be completely ignored. >>> In that case, it should be completely doable even in Scheme now. >>> (I s

Re: Flexible lyric alignment,Re: Flexible lyric alignment

2022-11-17 Thread Jean Abou Samra
Le 17/11/2022 à 23:01, Werner LEMBERG a écrit : But how do you take into account the constraints from lyrics here? That is the whole problem. They should be completely ignored. In that case, it should be completely doable even in Scheme now. (I started writing some code yesterday in response to

Re: Flexible lyric alignment,Re: Flexible lyric alignment

2022-11-17 Thread Werner LEMBERG
>>> But how do you take into account the constraints from lyrics here? >>> That is the whole problem. >> >> They should be completely ignored. > > In that case, it should be completely doable even in Scheme now. > (I started writing some code yesterday in response to Abraham that > does essentia

Re: aligning text in text spanner

2022-11-17 Thread Werner LEMBERG
> I volunteer for opening an issue ;-). I have barely any idea of how > those commands work, much less of how to explain them to someone > else. Then do so, please! Werner

Re: Hi - Problem with \with-link

2022-11-17 Thread Jean Abou Samra
Le 17/11/2022 à 12:30, Eulogia a écrit : Thanks for the answer! In fact I should have started with that…Now I've found the solution. I give the code, if it could help someone: \version "2.20.0" reference = "1" labelNr = #(string-append "Ref" reference) \label \labelNr \markup { "Page 1" } \

Re: Checkpoints (was re: Adding durations (for \after))

2022-11-17 Thread Joel C. Salomon
On 11/17/22 11:12, Jean Abou Samra wrote: Le 17/11/2022 à 16:58, Joel C. Salomon a écrit : (Motivation: I got bit by the "programming error: could not find this grob's vertical axis group in the vertical alignment" issue in one score.  Searching the list indicates this is probably a misalignmen

Re: Checkpoints (was re: Adding durations (for \after))

2022-11-17 Thread Jean Abou Samra
Le 17/11/2022 à 16:58, Joel C. Salomon a écrit : (Motivation: I got bit by the "programming error: could not find this grob's vertical axis group in the vertical alignment" issue in one score.  Searching the list indicates this is probably a misalignment somewhere, but I've still not succeeded

Re: Checkpoints (was re: Adding durations (for \after))

2022-11-17 Thread Kieren MacMillan
Hi Joel, > Is it even possible to query the temporal position, to enable some form of > checkpoints? This is the complement to my "anchor" idea (which would define the checkpoint), so I imagine they could both be implemented together, as a pair of interconnected features…? Cheers, Kieren.

Checkpoints (was re: Adding durations (for \after))

2022-11-17 Thread Joel C. Salomon
On 11/12/22 09:42, Kieren MacMillan wrote: Here's one concrete example: https://lists.gnu.org/archive/html/lilypond-user/2010-12/msg00790.html “Annoyance: the expressive part needs skips of the durations corresponding to the notes in between the expressive marks. Someday, I hope that LilyPond

Re: Horizontally aligning mixed articulations in /improvisationOn mode

2022-11-17 Thread Viktor Mastoridis
> > This is controlled by the toward-stem-shift and > toward-stem-shift-in-column properties. Try > > \version "2.22.2" > > { > \time 2/4 > \improvisationOn \repeat unfold 2 { a'4^\staccato} > \repeat unfold 2 { a'4^\upbow} > \repeat unfold 2 { a'4\upbow^\staccato} > \override Script.towa

Re: Hi - Problem with \with-link

2022-11-17 Thread Jean Abou Samra
> Le 17/11/2022 11:48 CET, Eulogia a écrit : > > > Hi, > > The command \with-link doesn't work with MacOS / Preview. > > But the command \page-link works… I suppose that's a bug with \with-link? Hi, and welcome. Please give an example where \with-link seems not to work for you: https://lil

Hi - Problem with \with-link

2022-11-17 Thread Eulogia
Hi, The command \with-link doesn't work with MacOS / Preview. But the command \page-link works… I suppose that's a bug with \with-link? Greatings, Composer of Eulogia

Re: Horizontally aligning mixed articulations in /improvisationOn mode

2022-11-17 Thread Jean Abou Samra
> Le 17/11/2022 11:07 CET, Viktor Mastoridis a > écrit : > > > Hello, > > Adding a ^\staccato articulation to \improvisationOn notation renders it > correctly, the dot is aligned with the top of the stem. > When adding \upbow however, the articulation is aligned with the note head, > being

Horizontally aligning mixed articulations in /improvisationOn mode

2022-11-17 Thread Viktor Mastoridis
Hello, Adding a ^\staccato articulation to \improvisationOn notation renders it correctly, the dot is aligned with the top of the stem. When adding \upbow however, the articulation is aligned with the note head, being engraved at the left of the stem. The same happens in \upbow^\staccato. I can s

Re: aligning text in text spanner

2022-11-17 Thread Martín Rincón Botero
I volunteer for opening an issue ;-). I have barely any idea of how those commands work, much less of how to explain them to someone else. www.martinrinconbotero.com > > On Nov 17, 2022 at 7:58 AM, mailto:w...@gnu.org)> wrote: > > > > > By the way, shouldn'