Re: how to implement the snippet in the attachment

2019-10-31 Thread DJF
On Oct 31, 2019, at 10:02 AM, Jinsong Zhao wrote: > > hi there, > I am trying to transcribe a music sheet. I have encountered the snippet in > the attachment. I don't figure out a way to implement it. I am now using an > alternative way like: Use hidden notes in the second voice to

how to implement the snippet in the attachment

2019-10-31 Thread Jinsong Zhao
hi there, I am trying to transcribe a music sheet. I have encountered the snippet in the attachment. I don't figure out a way to implement it. I am now using an alternative way like: \version "2.19.83" \relative c'' { \key f \major <<{bes2 ~ bes8 g a4} \\ {r4 <>

Re: how to implement the snippet in the attachment

2019-10-31 Thread Kieren MacMillan
Hi, > I don't figure out a way to implement it. Something like this, maybe? \version "2.19.83" { \key f \major << { bes'2 ~ 8[ ] } \\ \new Voice { \voiceTwo r4 ~ \once \hideNotes q8 } >> 4 } Hope that helps! Kieren.

Re: Ricochet bowing articulations

2019-10-31 Thread Ben
On 10/31/2019 2:50 PM, Pierre Perol-Schneider wrote: Oops, I miss something, here it goes: \version "2.19.83" #(define-markup-command (ricochet layout props nb spce) (integer? number?)   (interpret-markup layout props     #{ \markup        \override #'(baseline-skip . 1.5)        \left-column

Re: Ricochet bowing articulations

2019-10-31 Thread Ben
On 10/31/2019 2:50 PM, Pierre Perol-Schneider wrote: Oops, I miss something, here it goes: \version "2.19.83" #(define-markup-command (ricochet layout props nb spce) (integer? number?)   (interpret-markup layout props     #{ \markup        \override #'(baseline-skip . 1.5)        \left-column

Re: Ricochet bowing articulations

2019-10-31 Thread Ben
On 10/31/2019 3:07 PM, Pierre Perol-Schneider wrote: Manually you could do: {   d''^\markup        \override #'(baseline-skip . 1.5)        \left-column {          \line { \hspace #2 \teeny\bold "ric." }          \line {             " "             \overtie\concat {               " " \pattern

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
Manually you could do: { d''^\markup \override #'(baseline-skip . 1.5) \left-column { \line { \hspace #2 \teeny\bold "ric." } \line { " " \overtie\concat { " " \pattern #3 #X #1 \musicglyph #"dots.dot" \hspace

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
Hi Ben, How about: \version "2.19.83" #(define-markup-command (ricochet layout props nb spce) (integer? number?) (interpret-markup layout props #{ \markup { " " \overtie\concat { " " \pattern #nb #X #spce \musicglyph #"dots.dot" " " }

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
Oops, I miss something, here it goes: \version "2.19.83" #(define-markup-command (ricochet layout props nb spce) (integer? number?) (interpret-markup layout props #{ \markup \override #'(baseline-skip . 1.5) \left-column { \line { \hspace #2 \teeny\bold "ric." }

Re: LilyPond, LilyPond snippets and the GPL

2019-10-31 Thread David Kastrup
Hans Åberg writes: >> On 31 Oct 2019, at 03:15, Carl Sorensen wrote: >> >>> On 10/30/19, 5:13 PM, "Hans Åberg" wrote: >>> On 30 Oct 2019, at 22:14, Carl Sorensen wrote: The snippets should be LGPL for being includable under other licenses, I believe, because the

Re: testing the reachable of my post

2019-10-31 Thread Leo Correia de Verdier
I would do it like: \relative c' { << { f8 d f a~ 4 } \\ { 4. 8~ \hideNotes s4. } >> c'2. b4 } > 31 okt. 2019 kl. 08:20 skrev Jinsong Zhao : > > Hi there, > > Sorry for the disturbance. > > I have tried several times to post my question to the mailing list. However, > I have not

Ricochet bowing articulations

2019-10-31 Thread Ben
Good morning! How would it be possible to create the attached ricochet articulation in LilyPond? Also, I'm looking for a way to be able to modify the dots in two ways, for example: add/remove the number of dots (3-6) per articulation instance, and add some space in between several of the

Re: LilyPond, LilyPond snippets and the GPL

2019-10-31 Thread Hans Åberg
> On 31 Oct 2019, at 21:31, David Kastrup wrote: > >> All those parts should be LGPL, and also included headers, I believe: >> Not GPL, because that would legal technically force copyright >> limitations on the output, and not public domain, because then one >> could exploit the inputs in ways

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
I was thinking of something just before going to bed: { d''4^\markup { \override #'(baseline-skip . 1) \left-column { \line { \hspace #2 \teeny\bold "ric." } \score { \fixed b' { \shape #'(((-1 . -.5) (0 . -.5) (0 . -.5) (1 . -.5)))

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
PS. You can remove "\omit SystemStartBar", no need here. Le jeu. 31 oct. 2019 à 23:55, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > I was thinking of something just before going to bed: > > { > d''4^\markup { > \override #'(baseline-skip . 1) >

Re: octavating slurs

2019-10-31 Thread David Kastrup
David Olson writes: > Hello Lilyponders, > > If the basses are octivating, and I want a slurrish curve for the top note, > > and another slur for the bottom, > > is this possible? > > ( ) > > • This only gives one slur, from the "a" at the top of the staff to > the "b" also at the top. > >

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
" \override Slur.positions = #'(0 . -3)" should be removed, not needed. Le ven. 1 nov. 2019 à 00:38, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > This should work: > #(define-markup-command (ric layout props note)(ly:music?) > (interpret-markup layout props >#{ >

Re: octavating slurs

2019-10-31 Thread David Olson
Thank you David ! ^(_( works perfectly -- david olson - Original Message - From: "David Kastrup" To: "dadadharma @dslextreme.com" Cc: "lilypond-user" Sent: Thursday, October 31, 2019 4:42:46 PM Subject: Re: octavating slurs David Olson writes: > Hello Lilyponders, > > If the

Re: LilyPond, LilyPond snippets and the GPL

2019-10-31 Thread David Kastrup
Hans Åberg writes: >> On 31 Oct 2019, at 21:31, David Kastrup wrote: >> >>> All those parts should be LGPL, and also included headers, I believe: >>> Not GPL, because that would legal technically force copyright >>> limitations on the output, and not public domain, because then one >>> could

octavating slurs

2019-10-31 Thread David Olson
Hello Lilyponders, If the basses are octivating, and I want a slurrish curve for the top note, and another slur for the bottom, is this possible? ( ) • This only gives one slur, from the "a" at the top of the staff to the "b" also at the top. • It would be elegant to have the slur

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
This should work: #(define-markup-command (ric layout props note)(ly:music?) (interpret-markup layout props #{ \markup { \override #'(baseline-skip . 1) \left-column { \line { \hspace #2 \teeny\bold "ric." } \score { \fixed b' {

Re: Ricochet bowing articulations

2019-10-31 Thread Pierre Perol-Schneider
Some tests: #(define-markup-command (ric layout props note)(ly:music?) (interpret-markup layout props #{ \markup { \override #'(baseline-skip . 1.5) \left-column { \line { \hspace #2 \teeny\bold "ric." } \score { \fixed b' {

Re: LilyPond, LilyPond snippets and the GPL

2019-10-31 Thread Hans Åberg
> On 31 Oct 2019, at 22:10, David Kastrup wrote: > > Hans Åberg writes: > >>> On 31 Oct 2019, at 21:31, David Kastrup wrote: >>> All those parts should be LGPL, and also included headers, I believe: Not GPL, because that would legal technically force copyright limitations on

Re: how to implement the snippet in the attachment

2019-10-31 Thread Jinsong Zhao
On 2019/10/31 22:22, Kieren MacMillan wrote: Hi, I don't figure out a way to implement it. Something like this, maybe? \version "2.19.83" { \key f \major << { bes'2 ~ 8[ ] } \\ \new Voice { \voiceTwo r4 ~ \once \hideNotes q8 } >> 4 } Hope that helps! Kieren.

Re: how to implement the snippet in the attachment

2019-10-31 Thread Kieren MacMillan
Hi Jinsong, > Thank you very much for the help. It works well. I’m glad! > I don't understand the \new Voice If you do a web search for \new Voice lilypond the first hit is: . > and \voiceTwo A web search for

testing the reachable of my post

2019-10-31 Thread Jinsong Zhao
Hi there, Sorry for the disturbance. I have tried several times to post my question to the mailing list. However, I have not found it posted in the mailing list yet. -- In the following two pieces of codes, they are should the same. The only difference is the the second code combined the

Re: Chop Notation Symbols

2019-10-31 Thread Andrew Bernard
Are they already in SMuFL? If so, there is a simple way to include them using openlilylib. If not, submit them to SMuFL! (seriously). Andrew On Thu, 31 Oct 2019 at 05:38, Gregory Hollands wrote: > Casey Driessen and Oriole Saña have developed some new symbols for > notating the violin/fiddle

Re: Hairpin.minimum-length gives wrong output

2019-10-31 Thread Peter Toye
Thanks, that works brilliantly. It's a bit of a kludge, but will do for now. I don't see why the original didn't work, and I think it's a bug, so will report it there. Best regards, Peter mailto:lilyp...@ptoye.com www.ptoye.com - Wednesday, October 30, 2019, 4:06:31

Re: LilyPond, LilyPond snippets and the GPL

2019-10-31 Thread Hans Åberg
> On 31 Oct 2019, at 03:15, Carl Sorensen wrote: > >> On 10/30/19, 5:13 PM, "Hans Åberg" wrote: >> >>> On 30 Oct 2019, at 22:14, Carl Sorensen wrote: >>> >>> The snippets should be LGPL for being includable under other licenses, I >>> believe, because the processed part remains in the