how to simulate strings of different thickness

2024-09-17 Thread Stefan Thomas
Dear community, if I want to simulate plucked strings of different thickness in csound, how could I achieve this? Which opcode for physical modelling (plucked, wgpluck, etc.) should I use for this?

Re: How to lengthen stems in beamed groups

2024-06-30 Thread Knute Snortum
On Sat, Jun 29, 2024 at 6:42 PM Flaming Hakama by Elaine < ela...@flaminghakama.com> wrote: > >> Hi list, >> >> I'm hoping someone can give me insight into how to lengthen stems in >> beamed groups globally. >> >> LilyPond usually makes good

Re: How to get C(add9)???

2024-06-30 Thread Knute Snortum
On Sun, Jun 30, 2024 at 4:42 AM Mats-Olof Liljegren wrote: > Hi! > > Lilypond version ”2.25.17” error(?): > Using: 1-\markup { \super "add9" } > Gives med C9 = C E G Bb D' > Solution??? > Attached is some code with a few examples of creating chord exceptions. -- Knute Snortum \version "2.24.0

How to get C(add9)???

2024-06-30 Thread Mats-Olof Liljegren
Hi! Lilypond version ”2.25.17” error(?): Using: 1-\markup { \super "add9" } Gives med C9 = C E G Bb D' Solution??? Med vänlig hälsning / Kind regards Mats-Olof Liljegren e-pro Oskarsvägen 11B 702 14 Örebro Tel 070 360 19 19 e-post m...@e-pro.se web: http://e-pro.se

Re: How to lengthen stems in beamed groups

2024-06-29 Thread Flaming Hakama by Elaine
> -- Forwarded message -- > From: Knute Snortum > To: lilypond-user@gnu.org > Cc: > Bcc: > Date: Wed, 26 Jun 2024 09:46:29 -0700 > Subject: How to lengthen stems in beamed groups > Hi list, > > I'm hoping someone can give me insight into how t

How to lengthen stems in beamed groups

2024-06-26 Thread Knute Snortum
Hi list, I'm hoping someone can give me insight into how to lengthen stems in beamed groups globally. LilyPond usually makes good assumptions and has great defaults, but in this situation it fails to create good stem lengths in beamed groups. I've attached some sample code that illus

Re: how to draw lines independent from the notes

2024-06-04 Thread Aaron Hill
2) #0.8 #1 \override #'(box-padding . 0.1) \override #'(thickness . 0.5) \box \fontsize #-12 \line { dolor sit amet. } \override #'(angularity . 0.2) \override #'(filled . #f) \override #'(one-headed . #t) \override #`(label-alignment . ,LEFT) \override

Re: how to draw lines independent from the notes

2024-06-04 Thread Paolo Prete
That's impressive, thanks!! I encourage the maintainers of the code to replace the triangle shape in native LilyPond with your code, given that the actual shape is pretty weird and the gap with the segment is not nice to look at... On Tue, Jun 4, 2024 at 2:07 PM Aaron Hill wrote: > On 2024-06-0

Re: how to draw lines independent from the notes

2024-06-04 Thread Silvain Dupertuis
To create a drawing in PostScript format, one option would be to create the drawing with Inkscape and save as PostScript (*.ps). Something to test... Inkscape can open and save Postscript format. Then one can open the file with a text editor to copy and paste the relevant shape into a Lilypond

Re: how to draw lines independent from the notes

2024-06-03 Thread Paolo Prete
Thanks Aaron, see the attached pdf as an example: On Mon, Jun 3, 2024 at 7:49 PM Aaron Hill wrote: > On 2024-06-03 10:39 am, Paolo Prete wrote: > > On Mon, Jun 3, 2024 at 7:33 PM Aaron Hill > > wrote: > > > > so feel free to > >> reach out if this is not your area of expertise. > >> > > > > Th

Re: how to draw lines independent from the notes

2024-06-03 Thread Aaron Hill
On 2024-06-03 10:39 am, Paolo Prete wrote: On Mon, Jun 3, 2024 at 7:33 PM Aaron Hill wrote: so feel free to reach out if this is not your area of expertise. That's what I just did ;-) cheers I must admit I have not followed this thread super closely. Do you have a drawing of the typ

Re: how to draw lines independent from the notes

2024-06-03 Thread Aaron Hill
On 2024-06-03 10:33 am, Aaron Hill wrote: But pretty much, once you are in a \markup context, the world's your oyster. Start with the more primitive drawing commands and build up your own shapes. Turn those into reusable markup-commands of your own. Some of this may require some Scheme code

Re: how to draw lines independent from the notes

2024-06-03 Thread Paolo Prete
On Mon, Jun 3, 2024 at 7:33 PM Aaron Hill wrote: > On 2024-06-03 10:25 am, Paolo Prete wrote: > > Thanks, this is what I was searching for! > > > > Now, for an optimal refinement: is there a way to avoid these curved > > sides > > on the arrows and can the segment be attached to the arrows withou

Re: how to draw lines independent from the notes

2024-06-03 Thread Aaron Hill
On 2024-06-03 10:25 am, Paolo Prete wrote: Thanks, this is what I was searching for! Now, for an optimal refinement: is there a way to avoid these curved sides on the arrows and can the segment be attached to the arrows without gaps? Virtually anything is possible inside of LilyPond's \mark

Re: how to draw lines independent from the notes

2024-06-03 Thread Paolo Prete
> > bookTitleMarkup = \markup { > > \column { > >\postscript #" > > gsave > > initmatrix > > 1 setlinewidth 0 306 moveto 6 0 rlineto stroke > > 1 setlinewidth 377 306 moveto 6 0 rlineto stroke > > grestore" > >\fill-line { > > \fromproperty #'header:instrument > > ... > > > > --8<---cut here---end--->8--- > > > > Don't know if it helps in your case, but maybe gives you an idea of how > > to proceed. > > > > Have fun > > Torsten > > > > > >

Re: how to draw lines independent from the notes

2024-06-03 Thread Leo Correia de Verdier
neto stroke > grestore" > \fill-line { > \fromproperty #'header:instrument > ... > > --8<---cut here---end--->8--- > > Don't know if it helps in your case, but maybe gives you an idea of how > to proceed. > > Have fun > Torsten > >

Re: how to draw lines independent from the notes

2024-06-03 Thread Paolo Prete
eto stroke > grestore" >\fill-line { > \fromproperty #'header:instrument > ... > > --8<---cut here---end--->8--- > > Don't know if it helps in your case, but maybe gives you an idea of how > to proceed. > > Have fun > Torsten > > >

Re: how to draw lines independent from the notes

2024-06-03 Thread Torsten Krueger
perty #'header:instrument ... --8<---cut here---end--->8--- Don't know if it helps in your case, but maybe gives you an idea of how to proceed. Have fun Torsten

Re: how to draw lines independent from the notes

2024-06-02 Thread Werner LEMBERG
> How can I draw a vertical (or even diagonal) line independently > positioned from the notes in the score, that can span across staves, > as shown in the figure? The question is formulated in a very broad way. Assuming that you want to draw something completely independent of the score, you mi

how to draw lines independent from the notes

2024-06-02 Thread Paolo Prete
Hello, How can I draw a vertical (or even diagonal) line independently positioned from the notes in the score, that can span across staves, as shown in the figure? In addition, how can I draw a horizontal line with arrows on both sides and centered text above it, always independent from the score

Re: how to draw lines independent from the notes

2024-06-02 Thread Paolo Prete
For the question 1), I just found this: https://lsr.di.unimi.it/LSR/Snippet?id=253 Any idea about question 2? (arrows + centered text) Thanks On Sun, Jun 2, 2024 at 7:05 PM Paolo Prete wrote: > Hello, > > How can I draw a vertical (or even diagonal) line independently positioned > from the n

Re: How to transpose?

2024-05-27 Thread Wols Lists
On 25/05/2024 18:44, bobr...@centrum.is wrote: Wol, The bit about trombones in bass and Bb treble; I've only ever heard of Bb treble clef trombone in British brass band music.  What is the "American bass part" in Bb?  I've never heard of such a thing.  I know that Richard Strauß wrote tenor t

Re: how to remove marks automatically

2024-05-25 Thread Stefan Thomas
Dear Silvain, thank You, this worked perfectly for me! Providing you have juste one space as in the example, in the part \mark \markup { you can do a search and replace \\mark.\\markup.{[^{]+{[^}]+}[^}]+} with nothing (I tested it in Geany on Ubuntu) dot means one character [^{]* means a non-em

Re: How to transpose?

2024-05-25 Thread bobr...@centrum.is
f. -David > From: "Wols Lists" > To: "Lillypond Users Mailing List" > Sent: Friday, May 24, 2024 3:28:16 PM > Subject: Re: How to transpose? > On 23/05/2024 12:26, Kenneth Flak wrote: > > Great, thanks to both of you! Very clarifying. \transposition i

Re: How to transpose?

2024-05-25 Thread Kenneth Flak
Wols Lists, May 24, 2024 at 18:28: > I do a lot of brass stuff. And as you've realised, it's \transpose not > \transposition. > > I just think "\transpose for printed music, \transposition for midi". > How accurate that is I don't know. > > The other trick I always use (given that a trombone plays

Re: how to remove marks automatically

2024-05-25 Thread Knute Snortum
On Sat, May 25, 2024 at 9:16 AM Stefan Thomas wrote: > Dear community, > I would like to remove automatically all the "\mark \markup { \box { > LETTER } }" in the below quoted text. Can I do this with regex? Does > someone know how? > Thanks, > Stefan > > \version "2.22.2" > > violine = { >

Re: how to remove marks automatically

2024-05-25 Thread Silvain Dupertuis
Providing you have juste one space as in the example, in the part \mark \markup { you can do a search and replace \\mark.\\markup.{[^{]+{[^}]+}[^}]+} with nothing (I tested it in Geany on Ubuntu) dot means one character [^{]* means a non-empty sequence of characters without any { character \ n

how to remove marks automatically

2024-05-25 Thread Stefan Thomas
Dear community, I would like to remove automatically all the "\mark \markup { \box { LETTER } }" in the below quoted text. Can I do this with regex? Does someone know how? Thanks, Stefan \version "2.22.2" violine = { \clef "treble" | % 1 R1*8 | % 9 \mark \markup { \box { A } } R1*8

Re: How to transpose?

2024-05-24 Thread Wols Lists
On 23/05/2024 12:26, Kenneth Flak wrote: Great, thanks to both of you! Very clarifying. \transposition is, thus, going in the direction of instrument -> playback, whereas \transpose goes in the opposite direction, if I understand it correctly. I do a lot of brass stuff. And as you've realised,

Re: How to transpose?

2024-05-23 Thread David Kastrup
Kenneth Flak writes: > Great, thanks to both of you! Very clarifying. \transposition is, thus, > going in the direction of instrument -> playback, More like display pitch -> concert pitch. > whereas \transpose goes in the opposite direction, if I understand it > correctly. \transpose changes t

Re: How to transpose?

2024-05-23 Thread Kenneth Flak
Timothy Lanfear, May 23, 2024 at 13:19: > If you already have the music written in concert pitch, use the > transpose > function to change displayed pitch. > > \transpose bes, c { \clef treble \key c\major g' } > > If your brass players prefer not to have a key signature, omit the \key > statement.

Re: How to transpose?

2024-05-23 Thread Timothy Lanfear
orrect.  It is still necessary to enter the notes at displayed pitch as shown in the example. -David *From: *"Kenneth Flak" *To: *"Lillypond Users Mailing List" *Sent: *Thursday, May 23, 2024 6:

Re: How to transpose?

2024-05-23 Thread bobr...@centrum.is
Thursday, May 23, 2024 6:55:45 AM > Subject: How to transpose? > Hi, > Trying my hands on transposing from concert pitch to Trumpet in Bf and french > horn in F, but the displayed notes are still in concert pitch... How do I make > these display the notes I would like the players

How to transpose?

2024-05-22 Thread Kenneth Flak
Hi, Trying my hands on transposing from concert pitch to Trumpet in Bf and french horn in F, but the displayed notes are still in concert pitch... How do I make these display the notes I would like the players to see? \new Staff = "trumpet" \with { instrumentName = "Trp" } {

Re: [basic question] how to disable text spanners for the lower staff of a PianoStaff

2024-05-10 Thread James Harkins
On Fri, 10 May 2024 15:07:33 +0800 Mark Knoop wrote --- > Haven't tested, but I think Text_spanner_engraver lives in Voice, rather than > Staff. Try removing from the \global Voice, otherwise send a WME. Ah... indeed. That does take care of it. \new PianoStaff \with { instrumentNam

Re: [basic question] how to disable text spanners for the lower staff of a PianoStaff

2024-05-10 Thread Kieren MacMillan
Hi James, > I've got a piano staff (for guzheng, just notating on two staves), and an > "accel." text spanner in a \global var. Don’t forget to post MWEs, so people who want to help don’t have to conjure code themselves. :) > Some magic incantation I'm missing... Not sure why your incantatio

[basic question] how to disable text spanners for the lower staff of a PianoStaff

2024-05-09 Thread James Harkins
I've got a piano staff (for guzheng, just notating on two staves), and an "accel." text spanner in a \global var. The accel is printed in both staves of the piano staff. I'd thought this would hide it from the lower staff: \new PianoStaff \with { instrumentName = "古筝" shortInstrumentN

Re: How to manually set MIDI channel # for a staff?

2024-04-29 Thread David Kastrup
Jean Abou Samra writes: > Le lundi 29 avril 2024 à 06:31 -0500, Jason Yip a écrit : >> Hi, >> >> Does anyone know how to manually set the midi channel # for a staff to >> something other than the default of channel 0/1? Without having to >> create dummy sta

Re: How to manually set MIDI channel # for a staff?

2024-04-29 Thread Jason Yip
On 2024-04-29 06:48, Jean Abou Samra - jean(a)abou-samra.fr wrote: You can do \set Score.midiChannelMapping = #'voice as an alternative to that. Also \new Voice { } should work (untested) instead of \new Voice { s256 }. I don't think there's a better way. Setting midiChannelMapping property did

Re: How to manually set MIDI channel # for a staff?

2024-04-29 Thread Jean Abou Samra
Le lundi 29 avril 2024 à 06:31 -0500, Jason Yip a écrit : > Hi, > > Does anyone know how to manually set the midi channel # for a staff to > something other than the default of channel 0/1? Without having to > create dummy staffs with just `s256` as the voice content preceding

How to manually set MIDI channel # for a staff?

2024-04-29 Thread Jason Yip
Hi, Does anyone know how to manually set the midi channel # for a staff to something other than the default of channel 0/1? Without having to create dummy staffs with just `s256` as the voice content preceding the desired staff? The staff in question usually only has one voice, so I modified

Re: How to use define-music-function?

2024-03-20 Thread Aaron Hill
On 2024-03-20 8:53 am, enejati--- via LilyPond user discussion wrote: Hello, I'm a new lilypond user. I want to create multiple scores in a single file. These scores have some values on common. So I want to use `define-music-function` in order to avoid repetition. [ . . . ] A few things. Fir

How to use define-music-function?

2024-03-20 Thread enejati--- via LilyPond user discussion
Hello, I'm a new lilypond user. I want to create multiple scores in a single file. These scores have some values on common. So I want to use `define-music-function` in order to avoid repetition. Here is my code now: \score { \new Staff \with { instrumentName = "۱" } \one \layout { } }

Re: How to align second repeat verse against second voice

2024-02-26 Thread Andy Bradford
> Reading the rhythm would be easier if you replaced two of the dotted > quarter notes with an eighth note tied to the following quarter note. Yes, that's a great suggestion too and in fact I had already been considering that very modification. Thanks, Andy

Re: How to align second repeat verse against second voice

2024-02-26 Thread Jiří Hon
Hi Andy, Aaron has already answered your question, but I'd like to suggest one more adjustment. Reading the rhythm would be easier if you replaced two of the dotted quarter notes with an eighth note tied to the following quarter note. Here is the modified code: \version "2.18.2" \paper { #

Re: How to align second repeat verse against second voice

2024-02-25 Thread Andy Bradford
Thus said Aaron Hill on Sat, 24 Feb 2024 20:51:44 -0800: > Probably the easiest the option is to \set associatedVoice to > temporarily align your lyrics to the alternate notes. The important > quirk of associatedVoice is that you must make the change a syllable > ahead of when you ne

Re: How to align second repeat verse against second voice

2024-02-24 Thread Aaron Hill
On 2024-02-24 4:04 pm, Andy Bradford wrote: Hello, I have a piece with two verses in a repeat. The second time through there is a slight alteration in one of the measures which adds additional notes. I've been able to accomplish this using a temporary voice, but I'm not sur

How to align second repeat verse against second voice

2024-02-24 Thread Andy Bradford
Hello, I have a piece with two verses in a repeat. The second time through there is a slight alteration in one of the measures which adds additional notes. I've been able to accomplish this using a temporary voice, but I'm not sure if this is the best way as the words "ma - mo

Re: How to get more accidentials?

2024-02-22 Thread Thomas Richter
Am 21.02.2024 um 17:14 schrieb Johannes Koch: Hi, I was trying to extend the example at .. The emmentaler font currently contains single-arrowed flat/natural/sharp accidentials. I'd like to use more accidentials, like the double/triple arrow flat

How to get more accidentials?

2024-02-21 Thread Johannes Koch
Hi, I was trying to extend the example at . The emmentaler font currently contains single-arrowed flat/natural/sharp accidentials. I'd like to use more accidentials, like the double/triple arrow flat/natural/sharp accidentials shown in

Re: How to to a Lyrics extender line?

2024-02-14 Thread Michael Gerdau
> Why not > > verseC = \lyricmode { \repeat unfold 4 { \skip 8 } lu __ _ >\markup \null \repeat unfold 3 { \skip 8 } lu __ _ } Thanks Kieren, that's kind of what I was looking for :) Kind regards, Michael -- Michael Gerdau email: m...@qata.de GPG-keys available

Re: How to to a Lyrics extender line?

2024-02-14 Thread Kieren MacMillan
Hi Michael, Why not verseC = \lyricmode { \repeat unfold 4 { \skip 8 } lu __ _ \markup \null \repeat unfold 3 { \skip 8 } lu __ _ } ? Hope that helps! Kieren __ My work day may look different than your work day. Please do not fe

Re: How to to a Lyrics extender line?

2024-02-14 Thread Michael Gerdau
I‘d read that. Different but hacky as well and ruins MIDI. Thank you for pointing that out. Kind regards, Michael Mobil gesendet > Am 14.02.2024 um 10:55 schrieb Hans Aikema : > >  > > >>> On 14 Feb 2024, at 10:17, Michael Gerdau wrote: >>> >> Hi list, >> >> I often come across a proble

Re: How to to a Lyrics extender line?

2024-02-14 Thread Hans Aikema
> On 14 Feb 2024, at 10:17, Michael Gerdau wrote: > > Hi list, > > I often come across a problem like in the attached example where I want an > extender line to stop (in the example upper system before bar 3). > > I can achieve something like it by adding e.g. a "." to the Lyrics and change

How to to a Lyrics extender line?

2024-02-14 Thread Michael Gerdau
Hi list, I often come across a problem like in the attached example where I want an extender line to stop (in the example upper system before bar 3). I can achieve something like it by adding e.g. a "." to the Lyrics and change the colour to white or something similar (see example lower syst

Re: How to

2024-02-01 Thread François Bastien
Thank you for your explanation and your links, now it works! Le jeu. 1 févr. 2024, 12:05, Jean Abou Samra a écrit : > Try > > #(define (should-not-print-arranger layout props) >(equal? "" (chain-assoc-get 'header:arranger props))) > > For one thing, 'header:arranger just gives a symbol >

Re: How to

2024-02-01 Thread Jean Abou Samra
Try ``` #(define (should-not-print-arranger layout props) (equal? "" (chain-assoc-get 'header:arranger props))) ``` For one thing, `'header:arranger` just gives a [symbol](https://extending-lilypond.gitlab.io/en/scheme/quoting.html), it doesn't look up the arranger. A symbol is never equal

How to

2024-02-01 Thread François Bastien
Hello, I make some tweaks to the default layout, and I would want to conditionally add an `arr.` before the arranger name on one of my custom layout. This is used to produce two music sheets, one compact and one large, the large containing the `arr. Somebody`, and the compact containing `Somebody

Re: how to install lilypond version on linux (ubuntu 22.04)

2024-01-05 Thread Werner LEMBERG
> I managed to build a specific stable lilypond version for my linux > distro (Ubuntu 22.04). Because I can not find the wright > documentation on this subject, I like to know how can I install the > generated build files from my build directory on my linux distro. > When I try to install my buil

how to install lilypond version on linux (ubuntu 22.04)

2024-01-05 Thread CX
I managed to build a specific stable lilypond version for my linux distro (Ubuntu 22.04). Because I can not find the wright documentation on this subject, I like to know how can I install the generated build files from my build directory on my linux distro. When I try to install my build with “sudo

Re: How to move an ornament vertically

2024-01-02 Thread Valentin Petzel
Hello Hajo, > I wonder how you can "talk" LilyPond into moving a dashPlus symbol > above a slur. Without any tweaking it always puts the dashPlus under a > slur, whereas if you replace the dashPlus by a \trill command, the > trill symbol is always placed above the slur. This can be done using the

How to move an ornament vertically

2024-01-02 Thread Hajo Baess
Dear all, I wonder how you can "talk" LilyPond into moving a dashPlus symbol above a slur. Without any tweaking it always puts the dashPlus under a slur, whereas if you replace the dashPlus by a \trill command, the trill symbol is always placed above the slur. If I move around the slur like this:

Re: How to put a big number in the upper left or right corner of a score?

2023-12-28 Thread billhunker
rizon, Samsung Galaxy smartphone Original message From: Michael Werner Date: 12/28/23 6:15 AM (GMT-06:00) To: Kris Van Bruwaene Cc: lilypond-user@gnu.org Subject: Re: How to put a big number in the upper left or right corner of a score? Hi Kris,On Mon, Aug 28, 2023 at 4:44 AM Kris

Re: How to achieve minimum horizontal spacing between notes

2023-12-28 Thread Jiří Hon
After some trial and error, the simplest workaround was to override the stencil of NoteHead so it draws the missing ledger line. I conditionally set NoteHead.stencil to ly:text-interface::print and set NoteHead.text to custom markup function. \override NoteHead.stencil = #(lambda (grob)

Re: How to put a big number in the upper left or right corner of a score?

2023-12-28 Thread Michael Werner
Hi Kris, On Mon, Aug 28, 2023 at 4:44 AM Kris Van Bruwaene wrote: > (Lilypond version 2.24.1, Guile 2.2). > > What is the easiest way to put a big number (e.g. font size 4 bold) in > the upper left or right corner of a score? In previous versions I used to > manage this with a double header, on

Re: How to put a big number in the upper left or right corner of a score?

2023-12-28 Thread Jean Abou Samra
Hi, > Thank you Jean. I just now wanted to apply your tip, but it's not quite what > I expected. If I copy your script litterally, the number overlaps with the > \header (piece title, composer etc.). If I delete the \with-outline the > overlap is gone, but the number appears below the header,

How to achieve minimum horizontal spacing between notes

2023-12-15 Thread Jiří Hon
Dear LilyPond community, I'm working on an web psalter https://www.zaltar.cz (in Czech language) with responsive music notation based on LilyPond. For example, take a look at https://www.zaltar.cz/OL1.html and try changing the width of the browser. The notation is pre-engraved at 9 different s

Re: How to force score/bookpart to start after page turn?

2023-11-30 Thread Nikolai Hedler
I should mention - the \pageTurn function does not appear to be useful here, as it either a) separates the headers from the score if placed within the bookpart but before the score, b) adds stray headers if placed between bookparts, or c) does nothing if placed at the end of the bookpart. - Nikola

How to force score/bookpart to start after page turn?

2023-11-30 Thread Nikolai Hedler
I have a book of scores and parts and would like to ensure that two-page parts are always printed on opposite pages, so there's no page turn. Is there a straightforward way to automatically add a blank page if the previous part/score ends on a left page? - Nikolai

Re: solved; how to get system separator on both sides

2023-11-28 Thread Jean Abou Samra
> Yes thank you that works.  perhaps could be put in snippet respository? [https://lsr.di.unimi.it/LSR/Item?id=1176](https://lsr.di.unimi.it/LSR/Item?id=1176) signature.asc Description: This is a digitally signed message part

solved; how to get system separator on both sides

2023-11-28 Thread jh
Yes thank you that works. perhaps could be put in snippet respository? On 2023-11-28 02:09, Jean Abou Samra wrote: I don't think it's in a snippet, but you can do \version "2.24.2" \paper { system-separator-markup = \markup \fill-line { \slashSeparator \slashSeparator } } { c' \break c'

Re: forgotten how to get system separator on both sides

2023-11-28 Thread Jean Abou Samra
I don't think it's in a snippet, but you can do ``` \version "2.24.2" \paper { system-separator-markup = \markup \fill-line { \slashSeparator \slashSeparator } } { c' \break c' } ``` signature.asc Description: This is a digitally signed message part

forgotten how to get system separator on both sides

2023-11-27 Thread jh
Long ago I was an active user but it's gotten so far away that I use an older version 2.22.1 longer ago my conductor (at the time) wanted slash separators on both sides of the system that was for 1.16.x I think. But is this possible again? If so please either direct me to the snippet

Re: How to "guarantee" Lilypond pdf (letter) output with sufficient margins for 3-hole punch?

2023-10-23 Thread Kenneth Wolcott
wrote: > > > On Mon, Oct 23, 2023 at 11:09 AM Kenneth Wolcott > wrote: >> >> Hi; >> >> How to "guarantee" Lilypond pdf (letter) output with sufficient >> margins for 3-hole punch? > > > It's no guarantee, but I put the foll

Re: How to "guarantee" Lilypond pdf (letter) output with sufficient margins for 3-hole punch?

2023-10-23 Thread Knute Snortum
On Mon, Oct 23, 2023 at 11:09 AM Kenneth Wolcott wrote: > Hi; > > How to "guarantee" Lilypond pdf (letter) output with sufficient > margins for 3-hole punch? > It's no guarantee, but I put the following in my paper block: two-sided = ##t inner-margin

How to "guarantee" Lilypond pdf (letter) output with sufficient margins for 3-hole punch?

2023-10-23 Thread Kenneth Wolcott
Hi; How to "guarantee" Lilypond pdf (letter) output with sufficient margins for 3-hole punch? I'm looking forward to having a method of "guaranteeing" Lilypond pdf output for letter (not a4) of my engravings such that the resulting printout can be three-ho

Re: how to modify footnote numbered mark line length

2023-10-15 Thread Werner LEMBERG
> Here is the example. The line between the grob and the footnote number is controlled by the number's position, i.e., the first argument to the `\footnote` command. ``` \version "2.24.2" { \footnote #'(-1 . 3) "A note." a'4 a'4 \footnote #'(-5 . -5) "Another note." a'4 a'4 } ```

Re: how to modify footnote numbered mark line length

2023-10-15 Thread Paolo Cantamessa
Here is the example. Many thanks. Il dom 15 ott 2023, 16:02 Werner LEMBERG ha scritto: > > > someone know how to modify line length footnote between number and > > music object? > > Please show images that explain what you want to do. > > > Werner >

Re: how to modify footnote numbered mark line length

2023-10-15 Thread Werner LEMBERG
> someone know how to modify line length footnote between number and > music object? Please show images that explain what you want to do. Werner

how to modify footnote numbered mark line length

2023-10-15 Thread Paolo Cantamessa
Hello everyone, someone know how to modify line length footnote between number and music object? Many thanks. Paolo

Re: How to define a turn with two accidentals

2023-10-13 Thread Volodymyr Prokopyuk
Hi Michael, Fantastic solution! Thank you very much! LilyPond is similar to Emacs: given my superficial understanding of both LilyPond and Elisp, quite often non-standard things are quite hard to nail down without help from experts, but most of them are possible! Thank you, Vlad On Fri, Oct 13,

Re: How to define a turn with two accidentals

2023-10-13 Thread Michael Werner
Hi Vlad, On Fri, Oct 13, 2023 at 6:02 AM Volodymyr Prokopyuk < volodymyrprokop...@gmail.com> wrote: > I'd like to create a *music function* for convenience to be used like \after > 4. { \udTurn \sharp \natural } g=''2 a8 g f e | > > How do I create a music function for this purpose? I've tried th

Re: How to define a turn with two accidentals

2023-10-13 Thread Volodymyr Prokopyuk
Hi, Thank you very much for your advice! While the below *code* \after 4. ^\markup \center-column { \raise #-1 \teeny \sharp \musicglyph "scripts.turn" \lower #-1 \teeny \natural } g=''2 a8 g f e | gives the *desired result* [image: image.png] I'd like to create a *music fu

Re: How to define a turn with two accidentals

2023-10-13 Thread Hans Åberg
> On Oct 12, 2023, at 23:10, Volodymyr Prokopyuk > wrote: > > Is it possible to define a turn with two accidentals as shown below? I think you must design them, say adding another column item to what I use: mordentsharp = ^\markup \left-align \center-column { \musicglyph #"scripts.mordent"

Re: How to define a turn with two accidentals

2023-10-12 Thread Knute Snortum
Expanding on Jakob's suggestion, try: \version "2.24.2" sharpTurnFlat = \markup { \center-column { \lower #2 \tiny \flat \lower #1 \musicglyph "scripts.turn" \tiny \sharp } } \relative c'' { \time 2/4 g4-\tweak X-offset 1.5 ^\markup \sharpTurnFlat e'8 c \bar

Re: How to define a turn with two accidentals

2023-10-12 Thread Jakob Pedersen
Hi Vlad, Perhaps not quite what you are looking for, but you can use columns of markup like so: \relative c'' { \time 2/4 g4^\markup { \center-column { \flat \musicglyph "scripts.turn" \sharp } } e'8 c \bar "||" } I'm sure there's a better way known to the real experts, so consider this a

Re: How to end a trill with an acciaccatura in the same measure

2023-10-12 Thread Paul Hodges
Paul Hodges Cc: lilypond-user Sent: 12/10/2023 17:11 Subject: Re: How to end a trill with an acciaccatura in the same measure Hi Paul, Nice and clean solution! After some tweaks I've got what I wanted with the following code \afterGrace 15/16 d''1\( \t

How to define a turn with two accidentals

2023-10-12 Thread Volodymyr Prokopyuk
Hi, Is it possible to define a turn with two accidentals as shown below? [image: image.png] The LilyPond documentation has a snippet here https://lilypond.org/doc/v2.24/Documentation/notation/expressive-marks-attached-to-notes for a turn with one accidental. Thank you, Vlad

Re: How to end a trill with an acciaccatura in the same measure

2023-10-12 Thread Volodymyr Prokopyuk
is: > > { \afterGrace d''1\trill( { c''16_\( d'' } e''2)\) } > > Paul > > > * From: * Volodymyr Prokopyuk > * To: * lilypond-user > * Sent: * 12/10/2023 14:58 > * Subject: * How to end a trill with an acciaccatura in the same

Re: How to end a trill with an acciaccatura in the same measure

2023-10-12 Thread Paul Hodges
The way I'd do it is: { \afterGrace d''1\trill( { c''16_\( d'' } e''2)\) }  Paul From: Volodymyr Prokopyuk To: lilypond-user Sent: 12/10/2023 14:58 Subject: How to end a trill with an acciaccatura in the same measure Hi,

How to end a trill with an acciaccatura in the same measure

2023-10-12 Thread Volodymyr Prokopyuk
Hi, I'd like to achieve the below [image: image.png] With the following code << \new Voice = voiceOne \relative { \voiceOne d''1( \trill | \stemDown e2) } \new Voice = voiceTwo \relative { \voiceTwo s2 s4. \acciaccatura { c''16 d } | s2 } >> I was able

how to redefine the brew-chord-slur?

2023-09-23 Thread cc0_knight--- via LilyPond user discussion
as the code mentioned, when I engraving, slur arpeggio are collision with measure line, how to avoid this by redefine slur? ``` \new PianoStaff <<   \set PianoStaff.connectArpeggios = ##t   \override PianoStaff.Arpeggio.stencil =     #ly:arpeggio::brew-chord-slur   \new Staff {     \rela

Re: How to make the width of the beamlets cover their corresponding noteheads?

2023-09-18 Thread yuanyelele--- via LilyPond user discussion
eamlets? > > MT > > Verzonden vanaf mijn Huawei mobiele telefoon > > > Oorspronkelijk bericht > Onderwerp: How to make the width of the beamlets cover their corresponding > noteheads? > Van: yuanyelele--- via LilyPond user discussion > Aan: lilypond-user@gnu.

Re: How to make the width of the beamlets cover their corresponding noteheads?

2023-09-18 Thread m.tarensk...@kpnmail.nl
I don't know how. But I first would like to know why beamlets?MTVerzonden vanaf mijn Huawei mobiele telefoon Oorspronkelijk bericht Onderwerp: How to make the width of the beamlets cover their corresponding noteheads?Van: yuanyelele--- via LilyPond user discussion Aan: lil

How to make the width of the beamlets cover their corresponding noteheads?

2023-09-18 Thread yuanyelele--- via LilyPond user discussion
Greetings everyone, I'd like to implement a very straightforward beaming logic, where the width of each beam covers its corresponding notehead. I can achieve this using \set stemLeftBeamCount and \set stemRightBeamCount, but is there a smarter and more automatic way to do this? I don't care ab

Re: How to move ossa staff to "in between" or "on top"?

2023-09-17 Thread Eef Weenink
Yep. that is the solution. Thank you. Regards, Eef Op 17 sep. 2023, om 14:48 heeft Jean Abou Samra mailto:j...@abou-samra.fr>> het volgende geschreven: \with { alignAboveContext = "right" }

Re: How to move ossa staff to "in between" or "on top"?

2023-09-17 Thread Jean Abou Samra
> \new Staff { d d } Change this line to     \new Staff \with { alignAboveContext = "right" } { d d } or     \new Staff \with { alignAboveContext = "left" } { d d } https://lilypond.org/doc/v2.24/Documentation/notation/modifying-single-staves#ossia-staves signature.asc Description: This

How to move ossa staff to "in between" or "on top"?

2023-09-17 Thread Eef Weenink
Hello all, For a piano-score I want to have an extra staff, so the pianist can read the melody of the singer. An ossa staff only on the places where the singer is exactually active. I have made this example: (see below). This way the extra staff always is at the bottom. What to do to get in

Re: How to have a parenthesized dynamic scripts including \cresc?

2023-09-01 Thread Jean Abou Samra
Le lundi 28 août 2023 à 14:36 +0200, Xavier Scheuer a écrit : > Ping @Werner LEMBERG and @Jean Abou Samra: should NR 1.3.1 Expressive marks > attached to notes be modified (to have other examples as parenthesized > dynamics for New dynamic marks) ? That snippet as well as LSR 1097 use italic par

Re: How to put a big number in the upper left or right corner of a score?

2023-09-01 Thread Jean Abou Samra
Hi, I'd just add it as markup: ``` \version "2.24.2" \markup \with-outline "" \translate #'(-3 . -1) \fontsize #4 "1234" { c' } ``` Best, Jean signature.asc Description: This is a digitally signed message part

  1   2   3   4   5   6   7   8   9   10   >