Re: reusing melody in different TabVoice instruments

2024-09-13 Thread Peter Chubb
You can use transpose. \transpose c c' { music } Peter C

Re: shared notes across piano staff

2024-09-13 Thread Paolo Prete
Hi, instead of going crazy using LilyPond's native functions for cross-staff, try using this, which supports exactly what you need: https://github.com/paopre/Spontini/blob/master/documentation/tabular.md Here’s the code that generates your complete music fragment: << \easyCrossStaff %TMODE {

Re: reusing melody in different TabVoice instruments

2024-09-13 Thread Walt North
Yes, transpose will do that for sections of notes.  However that means putting the original section of notes into one set of tweaks and the transposed section into the other set of tweaks and putting more skips into the original melody line.  Which partially defeats reusing one melody line beca

Question re: scheme, \transpose function

2024-09-13 Thread Yoshiaki Onishi
Dear LilyPond Community, In the interest of learning more about Scheme as used in LilyPond (and learning LilyPond in general!), I am currently in the process of making a shortcut function that handles the artificial harmonic notation of string instruments instead of typing ""However, something mus

Re: \include & Headers

2024-09-13 Thread Michael Gerdau
My pleasure. Lilypond is hugely powerful and therefore at times complex. As many others on this list will confirm, there is almost nothing that can’t be done if you’re willing to go the extra mile. And a lot of things just work out of the box. Kind regards, Michael Mobil gesendet > Am 12.09.

Re: Question re: scheme, \transpose function

2024-09-13 Thread Saul Tobin
I believe this stems from using $ rather than #, since this will insert literally c' and cause the apostrophe to be parsed twice. I'm away from my computer right now so can't actually test the example. Saul On Fri, Sep 13, 2024, 10:58 AM Yoshiaki Onishi wrote: > Dear LilyPond Community, > > In

Re: Question re: scheme, \transpose function

2024-09-13 Thread Yoshiaki Onishi
Thank you for your insight, Saul, For the foregoing code, I replaced $ with #, but now that isn't working, producing similar result as the first example of this LilyPond manual: https://lilypond.org/doc/v2.25/Documentation/notation/substitution-functions-and-relative-octave-entry I will try to k

Re: Question re: scheme, \transpose function

2024-09-13 Thread William Rehwinkel via LilyPond user discussion
Dear Yoshi, Actually, I think the procedure is working correctly, but using the \transpose function within a \relative is causing some weird output. For example, the file % \version "2.25.18" \relative c' { c16 c16 } % does not result in the output that I was expectin

ez-number size

2024-09-13 Thread ming tsang
Hi lilyponders, How to have the number inside ez-noteheads as the note head was magnified the mme :: \version "2.25.18" \language "english" #(define Ez_numbers_engraver (make-engraver (acknowledgers ((note-head-interface engraver grob source-engraver) (let* ((context (ly:

Re: Question re: scheme, \transpose function

2024-09-13 Thread David Kastrup
William Rehwinkel via LilyPond user discussion writes: > Dear Yoshi, > > Actually, I think the procedure is working correctly, but using the > \transpose function within a \relative is causing some weird > output. For example, the file > > % > \version "2.25.18" > \relative c' { > c16

Mensural notation in a \markup command

2024-09-13 Thread Dimitri Sykias
I would like to insert the following mensural symbols using the \markup command in LilyPond. In LaTeX, this can be done easily with a command like: \lilyGlyph[raise=0.6, scale=2]{timesig.mensural94} = \lilyTimeSignature{9}{2}. How can I achieve this in LilyPond? Thanks!