Re: Help with some lyrics gymnastics

2024-01-13 Thread David Wright
On Sat 13 Jan 2024 at 08:25:32 (-0800), Matthew Fong wrote:
> Hello everyone,
> 
> I've done a few more things which might be described as hacking using
> \markup.
> 
> \tweak LyricText.self-alignment-X #-0.75
> \markup \center-column { \override #'(baseline-skip . 0.4) \line{ "lives
> and reigns" } \vspace #-0.6 \line { \draw-line #'(19 . 0) } \vspace #-0.1
> \line { "live and reign" }}
> 
> Could this be implemented via something like a TextSpanner? The horizontal
> line has some overhang, but too much and it start a staff on the next line.
> 
> Unfortunately, I cannot change just one portion of the vertical alignment
> using VerticalAxisGroup.nonstaff-relatedstaff-spacing.padding
> 
> Any help is appreciated. Attached is my latest MWE.

Sorry, but can you stop reposting the original with each iteration,
please; I now have three copies, and so does everybody else on this list.

Cheers,
David.



fony-size chord wiyh bass chord

2024-01-13 Thread achar

Good morning.

I would like to be able to change only the size of the bass in a bass 
chord, for example G in the F/G chord.


And possibly be able to move it down and to the right of the agreement name.

Can anyone help me ?

Thank you so much .

Jean Pierre


Segno and Coda from LilyJazz in a DrumStaff

2024-01-13 Thread Sebastien Richard
Hi all,

I've been struggling with this for a long time without getting close to any 
solution.

How can I use the Segno & Coda from LilyJazz in the example below ?

\version "2.24.2"

drum = \drummode {
  sn4 sn sn sn
  \segnoMark 1
  sn4 sn sn sn
  \codaMark 1
  sn4 sn sn sn
}

\score {
  \new DrumStaff \with {} \drum
  \layout { }
}

BR

---
 Sébastien RICHARD


Re: Output PDF to stdout

2024-01-13 Thread Hans Aikema
On 13 Jan 2024, at 02:05, Curt McDowell  wrote:Have you actually tried this? LilyPond appends ".pdf" to the output filename (and ".midi"). If you try to make the fifo ending in ".pdf", you find lilypond removes the fifo before writing a new file. For the same reasons, the output file cannot be /dev/stdout. Maybe you could write something exciting using FUSE or Docker.On 1/7/2024 5:41 AM, Raphael Mankin wrote:On 05/01/2024 03:46, David Wright wrote:Alternatively, use a fifo, e.g. fifo=/var/tmp/ly-pdf$$rm -rf $fifomknod  $fifo pcat source.ly | lintLy | lilypond -o $fifo &optimizePDF  < $fifo > score.pdfwaitrm -rf $fifoA trick I learned when doing Oracle backups. It also would not write to stdout.As an offtopic sidenote: even if it worked/works, according to the man-pages of mknod mkfifo should be preferred over mknod to create the FIFO."POSIX.1-2001 says: "The only portable use of mknod() is to create a FIFO-special file.  If mode is not S_IFIFO or dev is not 0, the behavior of mknod() is unspecified."  However, nowadays one should never use mknod() for this purpose; one should use mkfifo(3), a function especially defined for this purpose."