Re: "oom pah" and chord line

2024-08-02 Thread Gilles Sadowski
Le mer. 31 juil. 2024 à 18:18, Gilles Sadowski a écrit : > > Hello. > > A common accompaniment motive is "oom pah": > https://en.wikipedia.org/wiki/Oom-pah > > An excerpt of a LilyPond-generated score is attached. > I get this PDF output by encoding separatel

"oom pah" and chord line

2024-07-31 Thread Gilles Sadowski
-- aMajorBar = \chordmode { s8 \shiftChordSymbol { 8 a } s \shiftChordSymbol { 8 a } | } ---CUT--- Best regards, Gilles

Re: Emacs setup

2024-07-04 Thread Gilles Sadowski
te-lisp. However, this doesn't do much for > > me... Could someone hold my hand a little bit to get this set > > up? > > I'm on Arch Linux, using emacs 29.4. On Debian/GNU Linux, it works "out of the box", perhaps due to: $ ls -l /etc/emacs/site-start.d/50lilypond-data.el -rw-r--r-- 1 root root 185 Nov 17 2014 /etc/emacs/site-start.d/50lilypond-data.el HTH, Gilles

Re: Adjusting instrumentation of a MIDI output?

2024-05-08 Thread Gilles Sadowski
ing to a MIDI [1] file depends on the configuration of the MIDI player (IOW, LilyPond has nothing to do with that). Regards, Gilles [1] https://en.wikipedia.org/wiki/General_MIDI

arranger.ly : update to Lilypond 2.25.7

2023-09-14 Thread Gilles Thibault
for example for those who have a lot of percussion in their arrangement. See http://gillesth.free.fr/Lilypond/arranger.ly-2.25.7/DOCS/arrangerDoc-en.pdf (middle of page 35) Happy downloading. *** Links -> Github: https://github.com/gilles-th/arranger.ly -> Direct access: ht

Re: chord.ly to extract notes from chords breaks with new Guile

2023-05-30 Thread Gilles Thibault
\extractVoice #1 \music midiII = \extractVoice #2 \extractNote #1 \music midiIII = \extractVoice #2 \extractNote #2 \noteAloneToRest \music \score { << \new Staff { \midiI } % { a1 } \new Staff { \midiII } % { b2 c2 } \new Staff { \midiIII } % { r2 d2 } % \midi } -- Gilles

Re: chord.ly to extract notes from chords breaks with new Guile

2023-05-29 Thread Gilles Thibault
part of the project arranger.ly http://gillesth.free.fr/Lilypond/arranger.ly/ My Lilypond version is 2.24.1 Please, tell me if there is something wrong with a more recent version. -- Gilles

Re: Count the number of notes

2023-01-05 Thread Gilles Thibault
ords or notes between A and B : ~a\n" (events-count musicAtoB '(EventChord NoteEvent))) % 4 \new Staff { \musicAtoB } %% You need to download 2 files : addAt.ly and extractMusic.ly (called by addAt.ly) Link for downloading : http://gillesth.free.fr/Lilypond/arranger.ly/ Hope that helps. -- Gilles

arranger:ly: update for Lilypond 2.24.0 and Guile 2.2

2022-12-17 Thread Gilles Thibault
Hello everyone. All is in the title. Good download. -> Github: https://github.com/gilles-th/arranger.ly -> Direct access: http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip -> In command line with wget (the main files of arranger.ly in an arranger.ly dir

Re: question about arranger.ly, export notes as text.

2022-08-01 Thread Gilles Thibault
) -- Gilles

Re: question about arranger.ly, export notes as text.

2022-08-01 Thread Gilles Thibault
arranger.ly Everything should be fine now Good reception. Links %%% Github https://github.com/gilles-th/arranger.ly Direct access : http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip %%% export-instruments test %%% \version

Re: question about arranger.ly, export notes as text.

2022-07-30 Thread Gilles Thibault
(export-instruments '(flute clar...) "exported-file.ly" #f) should produce in the current directory, a file called "exported-file.ly", with the definition of flute and clar. Is this the case ? It's a problem if not ! -- Gilles

Re: Help needed with arranger.ly

2022-07-25 Thread Gilles Thibault
culation.ly) arti = { 16( 16) 8-. 8-. } ... (rm 'instru 15 (ca arti #{ c d e f g a b c #})) -- Gilles

Re: question concerning arranger tool

2022-07-21 Thread Gilles Thibault
lt; \clef "G_8" \global \ten >> } \new Staff { << \clef bass \global \bas >> } %%% Note than an automation in a fugue can be difficult, because sometimes the theme when transposed in the 5th, is slightly different. (in french we call that a "mutation", don't know the English for that) -- Gilles

arranger.ly update

2022-07-11 Thread Gilles Thibault
: split (page 13) chords->voices (page 20) voices->chords (page 19-20) Good visit. *** Github https://github.com/gilles-th/arranger.ly Direct access : http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip *** -- Gilles

Re: filter the nth note

2022-07-04 Thread Gilles Thibault
Le 2022-06-19 10:58, Stefan Thomas a écrit : allNotes= { c'8 g' e' g' d' g' f' g' c' g' e' g' } someNotes = { c' d' c' } In other words: I would like to filter out every 4th note of allNotes, so that I could do in

Re: question concerning arranger tool

2022-07-04 Thread Gilles Thibault
Le 2022-06-20 14:12, Stefan Thomas a écrit : Dear community, I try to understand more of the arranger tool, have a look at https://github.com/gilles-th/arranger.ly Could someone give an instructional example, what the functions copy-out can do and how it works? I generally think taht there

Re: audible metronome in MIDI file?

2022-04-27 Thread Gilles Sadowski
seful, shouldn't this functionality be able to pick up the time signatures and create the appropriate sequence of "ticks" (strong and weak), roughly similarly to what happens with beams? Regards, Gilles > [...]

Re: how to split into two parts

2022-04-23 Thread Gilles Thibault
%% If you want to insert #{ r4 #} in the second beat of several bars, you can use x-rm and apply : #(apply x-rm 'flB #{ r4 #} (map (lambda(n)(list n 4)) '(1 3 7 12 19))) % => '((1 4) (3 4) (7 4)) If the 2 first bars are a rhythmic pattern used a lot of time in the piece, you would probably prefer to use the function cp (changePitch). -- Gilles

Re: how to split into two parts

2022-04-23 Thread Gilles Thibault
http://lsr.di.unimi.it/LSR/Item?u=1&id=545 Download link : http://gillesth.free.fr/Lilypond/chordsAndVoices/ chordsAndVoices.ly is also include in the arranger.ly project : https://github.com/gilles-th/arranger.ly -- Gilles

Re: help for midi instruments

2022-04-02 Thread Gilles Sadowski
t; creates midi output with increasing or decreasing loudness for the duration > of that note? You can achieve the desired effect with the following: ---CUT--- << {c1} {s8\> s s\! s\p} >> ---CUT--- Regards, Gilles > > [...]

Re: help for midi instruments

2022-04-02 Thread Gilles Sadowski
ncantation equivalent to Knute's template? Regards, Gilles

Re: help for midi instruments

2022-04-02 Thread Gilles Sadowski
even where they are not present; is there a way to create > them, but then keeping them hidden on the score, leaving just normal dynamic > sign? Yes (using "\tag"). Best regards, Gilles > > sorry for my English, I hope you can understand me > > regards > dario > >

Re: My Tuba+Piano engravings: during midi playback, the Piano dominates the Tuba; why?

2022-02-27 Thread Gilles Sadowski
mics of the Tuba to be "fff" and both the left > hand and right hand of the Piano to be "ppp", and yet the Piano > dominates the Tuba during midi playback. You can alter the balance with \set Staff.midiMinimumVolume = #0.2 \set Staff.midiMaximumVolume = #0.8 HTH, Gilles

Re: arranger, context voice

2021-11-10 Thread Gilles Thibault
llo" } \new Staff << \skips \music >> %%% But if you replace the definition of \skips by skips = { s1*2( s1*2) } the snippet fails (no slurs). It fails also with skips = { s1*2 s1*2-> } At last, with skips = { s1*2 s1*2->^"Hello" } you'll get an error : "script direction not yet known" -- Gilles

Re: arranger, context voice

2021-11-06 Thread Gilles Thibault
) #(init instruments) #(begin (rm 'A 1 (sim music artiA) ) ) \score { << \new Devnull \global \new GrandStaff << \new Staff \A \new Staff \B >> >> } Does someone have an idea how to do it? Thanks, Stefan Sorry to answer so late. Probably \new Staff \new Voice \A instead of \new Staff \A -- Gilles

arranger.ly update

2021-06-21 Thread Gilles Thibault
;s it. Happy downloading and exploring. * links Github https://github.com/gilles-th/arranger.ly direct access : http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip -- Gilles

Re: trying arranger and extract music

2021-06-15 Thread Gilles Thibault
;t use only the scheme version even in a Lilypond context. Compare : LowerI = { \eM \UpperI \M #1 {\M #2 s4 } r4 r8 } and LowerI = { #(em UpperI 1 '(2 4)) r4 r8 } -- Gilles

Re: first trial with arranger.ly

2021-05-03 Thread Gilles Thibault
Unbound variable: expand-notes-and-chords-copy-of I have changed something in file changePitch.ly. The function expand-notes-and-chords-copy-of is defined in this new version https://github.com/gilles-th/arranger.ly/blob/master/changePitch.ly Um, I have to make some progress to

Re: first trial with arranger.ly

2021-04-08 Thread Gilles Thibault
Le 2021-04-08 11:12, Stefan Thomas a écrit : Dear gilles, thanks very much for Your reply and Your kind help. I'm using version 2.22.0 now. Unfortunately, with this version, I can't see neither metronome-marks nor time signature nor anything else. I have just installed ve

Re: first trial with arranger.ly

2021-04-06 Thread Gilles Thibault
Before i make a new push Push done : Github https://github.com/gilles-th/arranger.ly Direct access : http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip It seems that in my last push, I've changed the signature of the tempos function ! I don't understand why or

Re: first trial with arranger.ly

2021-04-06 Thread Gilles Thibault
t push, I've changed the signature of the tempos function ! I don't understand why or how i did that because it is really stupid! Before i make a new push, you can get a corrected version of arranger.ly here : http://gillesth.free.fr/Lilypond/arranger.ly -- Gilles

Re: partcombine does not print rests

2021-02-01 Thread Gilles Thibault
\relative f { \global \clef bass \partcombineApart % <- here r4 c'2 c4 | % m1 ... r4 bf2 bf4| % m24 \partcombineAutomatic % <- and here c,4 g'2 bf4 | % m25 ... -- Gilles

Re: arranger.ly and lilypond 2.21+: error with the \note markup command

2021-01-20 Thread Gilles Thibault
Le 2021-01-15 23:26, Stefano Troncaro a écrit : Hi everyone, I started learning to use the spectacular arranger.ly library <https://github.com/gilles-th/arranger.ly> that was mentioned in the list a while ago. While most of it works great, I found that internally it sometimes uses the

Re: Spreadsheet - Python – Ly

2020-11-22 Thread Gilles Thibault
rrangerDoc-en.pdf ** GitHub link of the whole project: https://github.com/gilles-th/arranger.ly Direct link: http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip -- Gilles

Re: arranger.ly (new library)

2020-10-22 Thread Gilles Thibault
Le 2020-10-23 02:19, Andrew Bernard a écrit : Hi Gilles, Why don't we put it in openLilyLib? Avoid the balkanisation process of having dozens of personal git repos? I am happy to prepare it and do the work. OLL is got, so nothing will change in terms of development. Andrew On Fri, 23 Oct

arranger.ly (new library)

2020-10-22 Thread Gilles Thibault
Thank you for reading. Happy exploring. Many thanks to the French list for its constant help and support. links The GitHub link of the project: https://github.com/gilles-th/arranger.ly Direct link: http://gillesth.free.fr/Lilypond/arranger-GIT-copy/arranger.ly.zip -- Gilles

Re: [OLL} Discourse forum

2020-10-16 Thread Gilles Sadowski
d I am not sure that people on the LilyPond user list > necessarily want to read ling threads on details of Scheme parsers and > package code development and git topics. Sure. However, average users might want to be informed when some significant improvement has been made such that there

Re: Future of openLilyLib

2020-09-22 Thread Gilles Sadowski
Hi. Moving back to the ML; it was not my intention to discuss this "off-list"; I hope I won't be sued for public disclosure of a private communication. ;-) [See quoted text for the two messages that went off-list.] 2020-09-22 12:40 UTC+02:00, Karsten Reincke : > > On 2

Re: Question about abbreviations

2020-08-27 Thread Gilles Sadowski
I used years ago, > this could be abbreviated as c>c c. I know that < > are used in Lilypond > for chords - but is some other similar abbreviation possible? You can define a variable patOne = \relative c' { c4. c8 c4 } then refer to it: \patOne HTH, Gilles > > Thanks, > Alasdair > > > -- > https://numbersandshapes.net >

Re: Spacing of systems while using lyluatex

2020-08-25 Thread Gilles Sadowski
ith the "global" size setting: ---CUT--- #(set-global-staff-size 19) ---CUT--- The default is "20" (IIRC); by reducing it slightly (as above), the layout might become nicer... HTH, Gilles > > Claire >

Re: Help with Midi

2020-08-15 Thread Gilles Sadowski
apfelboymchen.net/gnu/notes/timidity++%20multiple%20soundfonts.html https://freepats.zenvoid.org/ HTH, Gilles

Re: Creating midi file that is not empty

2020-08-07 Thread Gilles Sadowski
#x27;s a MIDI player configuration issue. One thing to try is perhaps setting the MIDI instrument explicitly.[1] ---CUT--- \set Staff.midiInstrument = "clarinet" ---CUT--- Regards, Gilles [1] https://lilypond.org/doc/v2.20/Documentation/notation/midi-instruments > No pre-resampling cac

Re: [OT] modify midi

2020-06-15 Thread Gilles Sadowski
you want to apply the > change has to be "very similar" to the original one (for example changing > only the note pitch etc. etc.). Maybe this library could be useful: http://www.jfugue.org/index.htm See also that page: https://en.wikipedia.org/wiki/Comparison_of_MIDI_ed

Re: registering a composition

2020-05-23 Thread Gilles Sadowski
Le sam. 23 mai 2020 à 22:46, antlists a écrit : > > On 22/05/2020 13:26, Gilles Sadowski wrote: > > IIUC, CC licences aim to protect against others making money from > > your work. How is "ASCAP not being happy" related to that? > > > > > Unless I'

Re: registering a composition

2020-05-22 Thread Gilles Sadowski
inful and interesting > at the same time :) > > Kind regards, > > Francesco > > PS: lilypond rocks! :) Unless I'm mistaken, LilyPond (GNU) and CC belong to the "eco-system" where sharing is the norm (to enhance the common cultural pool) while making it hard f

Re: "Dangling" ties.

2020-05-20 Thread Gilles Sadowski
Hi. 2020-05-21 2:28 UTC+02:00, Hwaen Ch'uqi : > Greetings, > > Is there a way to force LilyPond to engrave ties at the end of a > snippet of music? No need to "force" ;-) http://lilypond.org/doc/v2.18/Documentation/snippets/expressive-marks#expressive-marks-laissez-v

Re: Replace the notes in a phrase (drum notation) with scheme?

2020-04-28 Thread Gilles Thibault
asier to deal with simultaneous music. Not ready for now. Sorry -- Gilles

Re: Replace the notes in a phrase (drum notation) with scheme?

2020-04-27 Thread Gilles Thibault
tMusic2.16.ly in the directory. 3- There is also a basic doc -- Gilles

Re: Transpose

2019-09-16 Thread Gilles Thibault
Sorry. Very late answer Here is a scheme way to proceed. (see attached file). %% For version 2.18 change the first line by : %% makeExercice = #(define-music-function (parser location p0 p1 p2 p3 highest-pitch lowest-pitch) makeExercice = #(define-music-function (p0 p1 p2 p3 highest-pitch low

Re: Lilypond slurs do not transfer to midi output

2019-02-20 Thread Gilles
-articulate-script HTH, Gilles Best regards, Even Thorbergsen Norwegian amateur musician ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

problème pour l’installation de Frescobaldi 3.0 et de lilypond 2.19.82 / problem for the installation of Frescobaldi 3.0 and lilypond 2.19.82

2018-11-19 Thread Gilles QUESNE
1) sudo port install frescobaldi Réponse : Last login: Mon Nov 19 04:36:27 on ttys000 iMac-de-Gilles:~ gillesndrianaherizo$ sudo port install frescobaldi Password: ---> Computing dependencies for frescobaldiError: Unable to determine location

Re: Extract the first notes from a musical expression

2018-11-16 Thread Gilles Thibault
Music/extractMusic-doc.pdf (well, probably in bad English, sorry for that) -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Proprietary Software term

2018-08-21 Thread Gilles
?" https://en.wikipedia.org/wiki/Ren%C3%A9_Magritte Regards, Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Adding a continuous drone to midi output

2018-05-22 Thread Gilles
here a few years ago. Regards, Gilles P.S. I've encountered an issue where the drone stops well before the melody it is supposed to double; it occurs when there are a lot of grace notes. Regards, Sven Axelsson ___ lilypond-user ma

Re: concatenating notes with a music expression

2018-05-14 Thread Gilles Thibault
f4 g4 } { b4 f4 g4 } { a4 f4 g4 } Good week. -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: fretboard diagram - string labels

2018-02-22 Thread Gilles van Eeden
ideas. Regards, Gilles On 2018-02-22 16:16, Carl Sorensen wrote: On 2/22/18, 1:54 AM, "Gilles van Eeden" wrote: Suggestions as to which external label to use and how to position and format this to match the fretboard diagram are welcome. The code to place the labels alre

Re: fretboard diagram - string labels

2018-02-22 Thread Gilles van Eeden
Hello Kieren, thanks for the tip, I'll look into it. Regards, Gilles On 2018-02-22 15:06, Kieren MacMillan wrote: Hi Gilles, I'm trying to create guitar fretboard diagrams like those in the attachment , which contain functional tone labels per string. I've been looking

fretboard diagram - string labels

2018-02-22 Thread Gilles van Eeden
a little over my lispless head. Suggestions as to which external label to use and how to position and format this to match the fretboard diagram are welcome. Best regards, Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.o

Re: Alignment of full-page scores in text documents

2018-01-29 Thread Gilles
because the "center of mass" of the notes in the last staff is below it? I'd guess that a similar (i.e. too high) effect would exist for the top staff if most notes were above it. My impression is that the latter image looks fine, once you assume that the "visual frame"

Re: TABS string

2017-02-22 Thread Gilles Peltzer
An easy fix was to force the string mark to be under the staff using underscore. { a,2.-2 | d,2.-1_\5 | g2._\4 | c,2.| }>> -G On Wed, Feb 22, 2017 at 9:55 PM, Gilles Peltzer wrote: > Hi Thomas, > Thanks for the help. I understand the logi

Re: TABS string

2017-02-22 Thread Gilles Peltzer
to the melody line on the Staff. I should find a way to force the string mark to appear next to the note it applies to. Thanks, -G On Wed, Feb 22, 2017 at 12:58 PM, Thomas Morley wrote: > 2017-02-22 19:32 GMT+01:00 Gilles Peltzer : > > Hello, > > LiliPond version "2.18.2&quo

TABS string

2017-02-22 Thread Gilles Peltzer
r voice on the staff and overwrite the finger number. The option \set TabStaff.restrainOpenStrings = ##t did not have any effect. Thanks for the help. -Gilles \layout { indent = 0\mm line-width = 180\mm } music = \relative c' { %line 5 <<{ a''4-1 b-3 c-4 |

Re: addFingering

2017-01-13 Thread Gilles THIBAULT
al-music (make-list n music ((= n 1) music) (else (make-music 'Music 'void #t \addFingering { \nCopy #2 {a b} } #"12" %%% David Kastrup explains how to make it work in \relative mode in this thread : http://lists.gnu.org/archive/html/lilypond-user/2015-11/msg00361.h

Top-posting (Was: New LilyPond website)

2016-12-01 Thread Gilles
Hi. On Fri, 2 Dec 2016 00:13:19 +0100 (CET), Gerdau, Michael wrote: My css file is a proposed inclusion into the website. John, may I kindly asked you to start trimming your responses to this list? You always top post, http://www.idallen.com/topposting.html Regards, Gilles write a

Re: Bach - Brahms Chaconne ... for left hand

2016-11-17 Thread Gilles
y far] the best when it comes to searching for something on the web... http://www.mutopiaproject.org/cgibin/make-table.cgi?searchingfor=chaconne HTH, Gilles Many thanks, David ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.o

About manually setting the margins for each page (Was: Re: Dorico release and tutorials)

2016-10-19 Thread Gilles
On Wed, 19 Oct 2016 11:01:21 -0400, Kieren MacMillan wrote: Hi Gilles, ? The initial post was about manually setting the margins for each page. The discussion quickly replaced that original query with a two-option approach. For whatever reason, it's clear that you don’t see how/when

Re: Dorico release and tutorials

2016-10-19 Thread Gilles
On Wed, 19 Oct 2016 10:42:58 -0400, Kieren MacMillan wrote: Hi Gilles, What I'm saying is that *if* the feature is to allow a given number of systems onto one page, it is better to have an explicit command to that effect, rather than "manually" fiddle with the margin and/or staf

Re: Dorico release and tutorials

2016-10-19 Thread Gilles
On Wed, 19 Oct 2016 16:20:11 +0200, Urs Liska wrote: Am 19.10.2016 um 16:14 schrieb Gilles: Hi. On Wed, 19 Oct 2016 09:47:01 -0400, Kieren MacMillan wrote: Hi Gilles, Unforced breaks can depend on previous margin settings, possibly making the numbering wrong when the user reruns the

Re: Dorico release and tutorials

2016-10-19 Thread Gilles
Hi. On Wed, 19 Oct 2016 09:47:01 -0400, Kieren MacMillan wrote: Hi Gilles, Unforced breaks can depend on previous margin settings, possibly making the numbering wrong when the user reruns the compilation with different settings. Of course that *can* happen… but it doesn’t have to. In all my

Re: Dorico release and tutorials

2016-10-19 Thread Gilles
Hi. On Wed, 19 Oct 2016 09:21:32 -0400, Kieren MacMillan wrote: Hi Gilles, Doesn't the page number depend on how the previous material has been typeset? Not if breaks are forced, etc. Unforced breaks can depend on previous margin settings, possibly making the numbering wrong when the

Re: Dorico release and tutorials

2016-10-19 Thread Gilles
you have only a small number of pages where you need the full orchestra and want to have smaller staff size. It seems to me that, rather than "specify the global-staff-size for individual pages", it should be "from now on, magnify the global-staff-size so that systems f

Re: Music runs off the page (LY version 2.9.9)

2016-09-12 Thread Gilles
be very grateful. Did you run it through "convert-ly"? Regards, Gilles Many thanks for any help, Brent Annable. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Changing and playing a different instrument in MIDI

2016-07-22 Thread Gilles
Here's a minimal example: \score { \new PianoStaff << \new Voice = "melody" \fixed c' { \set midiInstrument = #"accordion" \time 3/4 f4 g a } >> \midi{ \tempo 4 = 100 } } But this doesn't help me in any wa

Re: "unroll code"

2016-05-15 Thread Gilles THIBAULT
isplayLilyMusic, it should work. -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Replying to posts

2016-04-28 Thread Gilles
On Fri, 29 Apr 2016 10:40:09 +1000, Andrew Bernard wrote: Hi Gilles, As far as I know this particular list does not have a list owner, and there are no published rules. List owner/adminstrator/moderator: ie. someone who has the privilege to unsubscribe other people. People here have given

Re: Replying to posts

2016-04-27 Thread Gilles
on than noise, the list owner should consider banning them, rather than risk putting off those who follow the rules. Regards, Gilles The majority of readers of this mailinglist just wants to discuss the usage of LilyPond. That's why this list is called "lilypond-user". Everyo

Re: rhythm shift

2016-03-28 Thread Gilles THIBAULT
> %% TODO: this function [twoTiedNotesToOneNote] probably does not work with chords -:( No it doesn't and it is probably better : music = { 4~ } is correct in Lilypond. So what would be a good result for { \twoTiedNotesToOneNote \music } ? Not smart enough to answer. --

Re: rhythm shift

2016-03-28 Thread Gilles THIBAULT
} \new Staff \music \new Staff { \extractEnd \twoTiedNotesToOneNote \music { s2. s8. } } -- Note that if you "shift" rhythm, you have to delete barcheck | -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: changePitch and ties

2016-01-03 Thread Gilles THIBAULT
(end of chapter 6), in the directory above. Happy new year to everybody. -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: changePitch and ties

2015-12-27 Thread Gilles THIBAULT
> Would it be possible to tell changePitch to automatically repeat the pitch > of a tied note? Well, i have just read your message just yesterday. Sorry. Here is a function that automatically repeats the pitch of a tied note. I'll try to include it in a next release of changePitch.ly

Re: transpose pitch by semitones

2015-12-01 Thread Gilles THIBAULT
index) %%test #(for-each (lambda(n)(format #t "~2,' d - ~a\n" n (semitones->pitch n))) '(-5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)) %%%%%% -- The End --- -- Gilles ___ lilypond-user mailin

Re: transpose pitch by semitones

2015-12-01 Thread Gilles THIBAULT
c) 2))) %} %%test #(for-each (lambda(n)(format #t "~2,' d - ~a\n" n (semitones->pitch n))) '(-5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)) -- Gilles ___ lilypond-user mailing li

Re: transpose pitch by semitones

2015-11-30 Thread Gilles THIBAULT
)(format #t "~2,' d - ~a\n" n (semitones->pitch n))) '(-5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)) % -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Strange Scheme problem

2015-11-17 Thread Gilles THIBAULT
ind such directory") -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Delayed posts

2015-11-17 Thread Gilles
, _I_ could do, if it were a problem on my side? Same problem here... Best, Gilles ~ Simon ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Markup for repeated notes or phrases

2015-11-13 Thread Gilles THIBAULT
e to use \relative *after* \nCopy : Something like \relative c' { ... \nCopy #4 { c' d} ... } will give you some strange results... You may want either to work in \absolute mode or to replace in the code of \nCopy, the string : (ly:music-deep-copy music) by : (ly:music-deep-copy #

Prall and trill in "articulate" script

2015-10-19 Thread Gilles
ment in the code indicates that the "inverted mordent" option was not retained.] 2. A "trill" on a tied note only lasts as long as the first written note. The problem is alleviated by using a trill span, but then the trill is stopped at the start o

Re: Extract notes from chords, with silence when there are none

2015-09-17 Thread Gilles THIBAULT
Well, no very beautiful for a score but will be perfect for Midi. -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

RE : Extract notes from chords, with silence when there are none

2015-09-16 Thread Gilles Thibault
Provenance : Courrier pour Windows 10 > That's right. I just want any two notes that play simultaneously to be > returned by separate index values into the extraction function, and any > other index values to return something that will be silent (either a skip > or a rest). I don't want t

Re: lilypond teaching material

2015-09-16 Thread Gilles
On Wed, 16 Sep 2015 13:04:24 +0200, David Kastrup wrote: Gilles writes: Hello. On Wed, 16 Sep 2015 11:49:04 +0200, BB wrote: I just read http://lilypond.org/doc/v2.18/Documentation/learning/entering-input.html (again). I find that is a good basis for such an introduction, IIRC, someone

Re: lilypond teaching material

2015-09-16 Thread Gilles
. Some people will be afraid (i.e. won't be interested) by text input whatever advantage list you will throw at them. Those should be taught how to use a [FLOSS GUI] that depends on LilyPond for its rendering. Best regards, Gilles On 16.09.2015 11:24, Urs Liska wrote: Am 16.09.2015 um 11:14 sc

Re: Lining up notes in staves with different rhythms and time signatures

2015-08-21 Thread Gilles THIBAULT
\scaleDurations 2/3 { d4.} \scaleDurations 2/1 {a16} \scaleDurations 4/3 { c8. } | a8 g4. s4 \bar "" s8 \bar "|" } } \addlyrics { \tiny Vi -- rá -- gim, vi --

Re: guile-question: how to do (apply ly:stencil-combine-at-edge args)?

2015-08-18 Thread Gilles THIBAULT
Le mardi 18 août 2015, 23:57:36 Gilles THIBAULT a écrit : > > > I wasn't able to find the correct syntax how to do: > > > (apply ly:stencil-combine-at-edge ) > > > > > > Any hints? > > Perhaps you need to redefine ly:stencil-combine-at-edge >

Re: guile-question: how to do (apply ly:stencil-combine-at-edge args)?

2015-08-18 Thread Gilles THIBAULT
args)) res))) \markup \stencil #(apply my-stencil-combine-at-edge (stils 3)) %% -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: ostinato rhythm

2015-06-07 Thread Gilles THIBAULT
it/LSR/Item?id=654 % \include "changePitch.ly" ostinato = \samePitch {c4 r8 c~ c4 c} \changePitch \ostinato { g a } % -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Generate multiple score from a single music expression

2015-06-04 Thread Gilles THIBAULT
{ c2 d4 e f g a b c2 d4 e f g a b c1} \new Staff \with { \clef F } \relative c' { c2 b a g e c d g, c1} >> \score { \fullMusic } \score { \extractBegin \fullMusic { s1*2 s2 }} \score { \extractEnd \fullMusic s1*2} % --

Re: Color note heads outside nominal instrument range

2015-05-31 Thread Gilles THIBAULT
Le dimanche 31 mai 2015, 22:07:09 Gilles THIBAULT a écrit : > The staff 6 is the same as staff 3 .. as staff 4 -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Color note heads outside nominal instrument range

2015-05-31 Thread Gilles THIBAULT
be commented now. Something like that... %{ %uncomment for testing correct-out-of-range range = < g' g'' > #(define musicII (correct-out-of-range music range)) \new Staff \with { instrumentName = "6"} \musicII % staff 6 %} Thanks. -- Gilles __

Re: Color note heads outside nominal instrument range

2015-05-31 Thread Gilles THIBAULT
update of all the snippets of the LSR, 1 or 2 years ago (thanks Pierre Perol-Schneider for this big works). -- Gilles ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

  1   2   3   4   5   6   7   >