Re: Repeated Music

2022-11-16 Thread Jean Abou Samra
Le 16/11/2022 à 21:45, Greg Lindstrom a écrit : Hello all - I am working on a score in Lilypond 2.22.1 and believe I saw, somewhere, a notation to use in the programming of the notes to repeat the previous measure of notes. Not in the music, I use the various repeats all the time; this is in

Repeated Music

2022-11-16 Thread Greg Lindstrom
Hello all - I am working on a score in Lilypond 2.22.1 and believe I saw, somewhere, a notation to use in the programming of the notes to repeat the previous measure of notes. Not in the music, I use the various repeats all the time; this is in the editor when I am coding the notes so I would not

Re: repeated music

2009-11-26 Thread Valentin Villenave
On Thu, Nov 26, 2009 at 9:13 PM, Patrick Horgan phorg...@yahoo.com wrote: The third snippit shows only a box containing the words Praeludium in C Major.  Is that intentional? That's just a compatibility issue with the LSR. The source code compiles just fine (you can copy it by clicking on the

Re: repeated music

2009-11-24 Thread Valentin Villenave
On Tue, Nov 24, 2009 at 2:10 AM, Frank Steinmetzger war...@gmx.de wrote: A more complex, yet more funcion-like approach would be to write a function (scheme?) that takes a note as input and prints out the apropriate notes. But this is the easiest way _I_ can think of. Virtually anything can be

Re: repeated music

2009-11-24 Thread Alexander Kobel
Valentin Villenave wrote: Virtually anything can be done with Scheme: http://lsr.dsi.unimi.it/LSR/Item?id=487 Hey, cool! That's just what I was about to try to implement... ___ lilypond-user mailing list lilypond-user@gnu.org

repeated music

2009-11-23 Thread Francesco Petrogalli
Hello, is there a simple way to make a function that generate a repetead pattern having just a note as input? I'm writing a Brahms' piano score, and the left hand is doing the same rhythm, just changing the notes: %bar 1 {f8( f'4 f8)} \\ {f,2} %bar 2 {g8( g'4 g8)} \\

Re: repeated music

2009-11-23 Thread Alexander Kobel
Francesco Petrogalli wrote: Hello, is there a simple way to make a function that generate a repetead pattern having just a note as input? Hi, Francesco, you mean like this: \include applyRhythm-1.1.ily brahmsify = #(define-music-function (parser location note) (ly:music?) #{

Re: repeated music

2009-11-23 Thread Frank Steinmetzger
Am Dienstag, 24. November 2009 schrieb Francesco Petrogalli: Hello, is there a simple way to make a function that generate a repetead pattern having just a note as input? I'm writing a Brahms' piano score, and the left hand is doing the same rhythm, just changing the notes: %bar 1

Re: repeated music

2009-11-23 Thread Alexander Kobel
Frank Steinmetzger wrote: You could try something like basis=\relative c { { f8( f'4 f8) } \\ { f,2 } } \basis \transpose c d { \basis } \transpose c e { \basis } Oh, damn. Now how clever is this?! I suggest you use Frank's solution... Kudos. :-) A more complex, yet