Problems while defining an aligning mark-spanner

2023-12-30 Thread Thomas Morley
Hi, please have a look at the code below. It is an attempt to implement an aligning spanner between certain marks at score-level. Here I use TextMark and a newly defined TextMarkSpanner-grob. Currently the TextNarks are moved, which is nice. Though, it relies on the highest element in the Staff,

Re: aligning \mark text

2017-12-06 Thread Rohan Drape
thanks joram, they're excellent references! ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: aligning \mark text

2017-12-05 Thread Noeck
Dear Rohan, > is there a reference sheet for these properties somewhere that i > should consult in future before writing the list? I would recommend to read the learning manual. For questions like yours, these pages could have helped you:

Re: aligning \mark text

2017-12-04 Thread Rohan Drape
hello edward (& list), > \override Score.RehearsalMark.padding = #5 that works perfectly! many thanks. for the archives, this pushes the marks that would be placed within #n (which can be fractional and is in line spaces) to lie at #n, but leaves marks that lie beyond #n in place is there a

Re: aligning \mark text

2017-12-04 Thread Edward Neeman
That's funny, I have no idea. It only seems to give the error with a \mark at the beginning of the score. Best, Edward -- Dr. Edward Neeman Adjunct Instructor, South Georgia State College Collaborative Pianist, Valdosta State University, Georgia Artist Faculty, ELMS Conservatory,

Re: aligning \mark text

2017-12-04 Thread Ben
On 12/4/2017 9:23 AM, Edward Neeman wrote: Here's an alternative solution that puts the marks in their own dynamic context, keeping them vertically aligned: \version "2.18.2" << \new Dynamics \with { \consists Mark_engraver } { \mark \markup \rounded-box "x" s1 \mark \markup \rounded-box

Re: aligning \mark text

2017-12-04 Thread Edward Neeman
Here's an alternative solution that puts the marks in their own dynamic context, keeping them vertically aligned: \version "2.18.2" << \new Dynamics \with { \consists Mark_engraver } { \mark \markup \rounded-box "x" s1 \mark \markup \rounded-box "x" s1 \mark \markup \rounded-box "x" s1

Re: aligning \mark text

2017-12-04 Thread Edward Neeman
I'm guessing that staff-padding doesn't work because the Mark_engraver is part of the Score context, not the Staff context. What about this? \version "2.18.2" \relative c'' { \override Score.RehearsalMark.padding = #5 \mark \markup \rounded-box "x" c1 \mark \markup \rounded-box "x" g'1

Re: aligning \mark text

2017-12-04 Thread Rohan Drape
pps. thanks so much for lilypond! it's very very excellent! ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: aligning \mark text

2017-12-04 Thread Rohan Drape
ps. actually, two more things 1. looking at the whole score, perhaps what i really would like is a way to stop the marks near the staff moving around, perhaps by setting a minimum distance they can approach, while allowing very distant marks to still float, ie. the last mark in \version "2.18.2"

Re: aligning \mark text

2017-12-04 Thread Rohan Drape
hello again someone mentioned off-list that i should send a minimal example, apologies so: \version "2.18.2" \relative c'' { \mark \markup \rounded-box "x" c1 \mark \markup \rounded-box "x" g'1 \mark \markup \rounded-box "x" a,1 } the three boxes are all at different heights i'm hoping

aligning \mark text

2017-12-03 Thread Rohan Drape
hello list hopefully a very simple question i've a score with timing indications given as text marks above the top staff there's a tiny extract attached as a png from reading the manual i had hped that setting \override RehearsalMark.outside-staff-padding = #n for some value of n would align

Re: Aligning \mark

2017-11-27 Thread Jean Bréfort
\override Score.RehearsalMark.self-alignment-X = #LEFT Cheers, Jean Le lundi 27 novembre 2017 à 11:18 +0100, N. Andrew Walsh a écrit : > Hi List, > > I have a piece where I would like to have section titles, like: > > I. Risoluto > II. Libero > III. Giocoso > etc. > > I've been using \mark to

Re: Aligning \mark

2017-11-27 Thread Simon Albrecht
On 27.11.2017 11:18, N. Andrew Walsh wrote: I've been using \mark to insert these into the score, but that aligns the text centered on the barline, thus with a significant portion of the text lying over the preceding measure. I'd like them instead to be left-aligned to the barline, so that

Aligning \mark

2017-11-27 Thread N. Andrew Walsh
Hi List, I have a piece where I would like to have section titles, like: I. Risoluto II. Libero III. Giocoso etc. I've been using \mark to insert these into the score, but that aligns the text centered on the barline, thus with a significant portion of the text lying over the preceding measure.