Notes en lyrics left justified

2025-03-21 Thread Ad Rommel
When I compile the code below, I get a staff over the entire width of my page (see example 1), but the notes f and a, including the lyrics 'OK' and 'thanks' are in the middle of the staff. How can I make sure that the lyrics and notes on the left are justified? (see example 2) \version "2.22

Re: Repeat barlines with "tails" in piano staff

2025-03-21 Thread Thomas Morley
Am Fr., 21. März 2025 um 17:09 Uhr schrieb Richard Shann : > > On Thu, 2025-03-20 at 19:48 +0100, Hans Aikema wrote: > > > > > > > On 20 Mar 2025, at 18:56, Knute Snortum wrote: > > > > > > On Thu, Mar 20, 2025 at 5:17 AM Richard Shann > > > wrote: > > > > When using \bar ":|." in a piano staff t

Re: Orthodox Chant

2025-03-21 Thread Павел
Yes, you can use \cadenzaOn to disable automatic bar lines engraving. See the example: ``` \version "2.24.2" \include "english.ly" \relative c' { \cadenzaOn \autoBeamOff \omit Staff.TimeSignature \key f \major f4 f g2(a) f4 f f g a bf2 \bar"" a4 a \bar"" g2 f \bar"|." } \addlyrics {

Re: Repeat barlines with "tails" in piano staff

2025-03-21 Thread Richard Shann
On Thu, 2025-03-20 at 19:48 +0100, Hans Aikema wrote: > > > > On 20 Mar 2025, at 18:56, Knute Snortum wrote: > > > > On Thu, Mar 20, 2025 at 5:17 AM Richard Shann > > wrote: > > > When using \bar ":|." in a piano staff the barline spans the two > > > staffs, but when using \bar ":|]" it does n

Orthodox Chant

2025-03-21 Thread thedoctor81877 via LilyPond user discussion
Good Morning, I am trying to set unmetered Orthodox chant, and have the following, which works the way I want, but I have to essentially work the measures out before hand, and want to see if there is an easier, and more productive alternative. > \version "2.24.2" > \include "english.ly" > > \pa

Note name cue for high-pitched notes

2025-03-21 Thread Yann
Hi everybody ! In Behind Bars, Elaine Gould advises to indicate note names for occasional high-pitched notes (i.e. more than 5 ledger lines, p.325 I think, in keyboards section), in a small box aside note heads. Is there any standard way to do so ? Else I guess a properly tweaked markup may do th

Re: Notes en lyrics left justified

2025-03-21 Thread Valentin Petzel
Hello Ad, what you want is \paper { ragged-right = ##t } the issue with this is that it will shorten the staff. So use \layout { \context { \Staff \override StaffSymbol.width = #(lambda (grob) (ly:output-def-lookup (ly:grob-layout grob) 'line-width)) } } to enforce the st