Re: Dynamics collide with span bar (was Re: Chord names collide with span bar)

2024-03-22 Thread Michael Bret
Many thanks, Aaron. So here is a cleaner MWE, with your fix: \version "2.25.13" #(ly:set-option 'debug-skylines #t) \layout { \context { \Score \override NonMusicalPaperColumn.show-horizontal-skylines = ##t } } \layout { \context { \Dynamics \consists Pure_from_neighbor_engraver \

Re: Dynamics collide with span bar (was Re: Chord names collide with span bar)

2024-03-22 Thread Aaron Hill
On 2024-03-22 4:08 pm, Michael Bret wrote: Dear Werner, Aaron and Knute, (it is y first time attempting to contribute to such lilypond discussion so I don’t dare cc-ing the whole mailing list) (Adding the mailing list for visibility...) Regardless of your experience or comfort level, it is a

Re: How do I force chord names to top of stave when using multiple voices?

2024-02-05 Thread Valentin Petzel
Hello Marcus, essentially what you have here is << chordNames voiceI \\ voiceII >> If you only had << chordNames voiceI >> this would work out, because Lilypond would first see the chord names, which creates a new ChordNames context, and then the music, for which L

How do I force chord names to top of stave when using multiple voices?

2024-02-04 Thread Marcus Mayo
Hi all, I'm using lilypond to practice my voice leading. I want to keep the harmony as a separate voice for the sake of tidiness. However, when I add a second voice, the chords appear underneath the staff as opposed to above it. How do I fix this? Example: \version "2.25.11" \language "english"

Re: Alternate, parenthesised chord names

2023-11-27 Thread Laurie Savage
> R1 > R1 > R1 > } > >> > } > > For parentheses around Chords, I use this code > %% Parentheses for Chords %% > > #(define (left-parenthesis-ignatzek-chord-names in-pitches bass >

Re: Alternate, parenthesised chord names

2023-11-27 Thread Ernie Braganza
\new ChordNames \Harmonies \new Staff { R1 R1 R1 } >> } For parentheses around Chords, I use this code %% Parentheses for Chords %% #(define (left-parenthesis-ignatzek-chord-names in-pitches bass inversion context)

Alternate, parenthesised chord names

2023-11-27 Thread Laurie Savage
Hi, In jazz lead sheets one often comes across alternate chord names in parentheses written above the standard chord to signify an alternative harmony that can be played. I have tried doing that using this as a simple example of an alternative IIm7-V7 back to Imaj: \version "2.25.4"

Re: chord names

2023-10-13 Thread Valentin Petzel
Hello, instead of doing \repeat unfold 8 {s1} do s1*8 or \scaleDurations 8 s1 Cheers, Valentin Am Freitag, 13. Oktober 2023, 21:43:53 CEST schrieb clyde: > I would like to include chord names in only part of a song. The example > I attached does that. The problem is that the use of spa

chord names

2023-10-13 Thread clyde
I would like to include chord names in only part of a song. The example I attached does that. The problem is that the use of spaces in the ChordNames section interferes with the \CompressMMRests directive in the "notes" section. Is there another way to include chordnames in a porti

Insert brackets, lines and arrows between chord names

2022-12-25 Thread Javi
Hi, I'm trying to make a harmony analysis of some jazz standards with lilypond. I have a jazz lead sheet with Chord Names and some numeral Romans under the staff based on the lilypond-roman-numeral-tool. https://github.com/davidnalesnik/lilypond-roman-numeral-tool Now I need a way to i

Re: Adding text to chord names or note names (replies to discussion)

2022-12-02 Thread Flaming Hakama by Elaine
> -- Forwarded message -- > From: kbvw > To: Lilypond-User Mailing List > Cc: > Bcc: > Date: Thu, 01 Dec 2022 18:10:03 + > Subject: Re: Adding text to chord names or note names (replies to > discussion) > Hello Jean, Elaine, > > > &g

Re: Adding text to chord names or note names (solution)

2022-12-01 Thread Koen van Walstijn
Hi Jean, Thanks, indeed that's useful to know. (Still learning.) Sorry about that: I'll change it to GPLv3+ and open the issue on Gitlab. Cheers, Koen --- Original Message --- On Thursday, December 1st, 2022 at 8:31 PM, Jean Abou Samra wrote: > Le 01/12/2022 à 19:04, Koen van Walsti

Re: Adding text to chord names or note names (solution)

2022-12-01 Thread Jean Abou Samra
Le 01/12/2022 à 19:04, Koen van Walstijn a écrit : Code can be found here: https://gitlab.com/kbvw/lilypond-tweaks/-/blob/master/harmonic-background.ly By the way: if you want to made a piece of code available that you think someone might want to reuse for LilyPond, you need to put it under

Re: Adding text to chord names or note names (solution)

2022-12-01 Thread Jean Abou Samra
Le 01/12/2022 à 19:04, Koen van Walstijn a écrit : Hello, (Separately reply follows to some of the specific things that were written.) In case there is interest, what I did now was tweaking the Current_chord_text_engraver from scheme_engravers.scm. It simply takes the first pitch specified

Re: Adding text to chord names or note names (solution)

2022-12-01 Thread Koen van Walstijn
Hello, (Separately reply follows to some of the specific things that were written.) In case there is interest, what I did now was tweaking the Current_chord_text_engraver from scheme_engravers.scm. It simply takes the first pitch specified in a chord as the root, takes the first one with proper

Re: Adding text to chord names or note names (replies to discussion)

2022-12-01 Thread kbvw
Hello Jean, Elaine, > Amusingly, I found this post from 2001: > https://lists.gnu.org/archive/html/gnu-music-discuss/2001-03/msg00327.html > > (The thread continues here: > https://lists.gnu.org/archive/html/gnu-music-discuss/2001-04/msg0.html) ​ Ha, that's funny indeed. I'd say I completel

Re: Adding text to chord names or note names

2022-11-30 Thread Jean Abou Samra
Le 30/11/2022 à 05:26, Flaming Hakama by Elaine a écrit : I think here is where we dip into the reality that there are many different uses of chord changes. Chord symbols used for analysis are different than when used as an abbreviation for specific notes/voicings, which is different when used

Re: Adding text to chord names or note names

2022-11-29 Thread Flaming Hakama by Elaine
> Hello, > Le 29/11/2022 à 23:22, Flaming Hakama by Elaine a écrit : > > Lilypond provides ways both to choose among a few of the common > > approaches, and a way to define your own. > > > > It does not provide a way to use different symbols for the same chord > > in the same sequence. There are w

Re: Adding text to chord names or note names

2022-11-29 Thread Jean Abou Samra
Hello, Le 29/11/2022 à 23:22, Flaming Hakama by Elaine a écrit : Lilypond provides ways both to choose among a few of the common approaches, and a way to define your own. It does not provide a way to use different symbols for the same chord in the same sequence.  There are workarounds for tha

Re: Adding text to chord names or note names

2022-11-29 Thread Flaming Hakama by Elaine
2022 20:27:15 +0100 > Subject: Re: Adding text to chord names or note names > Le 28/11/2022 à 15:37, Kieren MacMillan a écrit : > > Hi Koen, > > > >> I still think it could be nice to try to write a longer-term solution. > > There has been a lot of work done on

Re: Adding text to chord names or note names

2022-11-28 Thread Jean Abou Samra
Le 28/11/2022 à 20:27, Jean Abou Samra a écrit : The other piece of brainstorming I know about, although I didn’t chase all the discussions in the devel mailing list, is the GSoC patch. This has the same goal of making it easier to coerce LilyPond into formatting chord names the way you want

Re: Adding text to chord names or note names

2022-11-28 Thread Jean Abou Samra
aking it more convenient to enter, e.g., piano music, by making it    easy to use \chordmode-like entry for a chord that appears in the middle    of a melody (no chord names involved here). So it’s more about applying \chordmode syntax to non-chord-names use cases. The other piece of brainstorming I

Re: Adding text to chord names or note names

2022-11-28 Thread Jean Abou Samra
> Le 28 nov. 2022 à 02:21, kbvw a écrit : > >  > Hi Jean, > > I just finished my reply when I saw your next message. :) > > Sorry, I was starting to forget about the "transposing" bit. > > Well, how about > > \version "2.22.2" > > t = > #(define-music-function (text) (markup?) >#{ >

Re: Adding text to chord names or note names

2022-11-28 Thread kbvw
Hi Kieren, Thanks for your reply; I hope my message didn't come off as rude or unsolicited. (To be sure: I did not mean to suggest removing any functionality that's there. I can easily see many use cases for calculating the actual pitches of a chord internally. I meant more of an alternative

Re: Adding text to chord names or note names

2022-11-28 Thread Kieren MacMillan
Hi Koen, > I still think it could be nice to try to write a longer-term solution. There has been a lot of work done on chord naming over the last decade, mainly as part of a Google Summer of Code project a few years ago, but essentially none of it has yet navigated through the patch submission

Re: Adding text to chord names or note names

2022-11-27 Thread kbvw
Hi Jean, I just finished my reply when I saw your next message. :) > Sorry, I was starting to forget about the "transposing" bit. > > Well, how about > > \version "2.22.2" > > t = > #(define-music-function (text) (markup?) > #{ > \once \set chordNameFunction = > #(lambda (sorted-pitches bass inve

Re: Adding text to chord names or note names

2022-11-27 Thread Jean Abou Samra
Le 28/11/2022 à 01:01, Jean Abou Samra a écrit : Le 28/11/2022 à 00:41, Koen van Walstijn a écrit : Hi Robin, Thanks a lot! I read over that bar lines snippet indeed. Adding the text engraver and tweaking it a bit, I managed to print the markup above the chord symbol, so that definitely hel

Re: Adding text to chord names or note names

2022-11-27 Thread Jean Abou Samra
Le 28/11/2022 à 00:41, Koen van Walstijn a écrit : Hi Robin, Thanks a lot! I read over that bar lines snippet indeed. Adding the text engraver and tweaking it a bit, I managed to print the markup above the chord symbol, so that definitely helped me along and it will do for the moment. After

Re: Adding text to chord names or note names

2022-11-27 Thread Koen van Walstijn
Hi Robin,Thanks a lot! I read over that bar lines snippet indeed. Adding the text engraver and tweaking it a bit, I managed to print the markup above the chord symbol, so that definitely helped me along and it will do for the moment.After reading the documentation and Scheme source a bit more, I

Re: Adding text to chord names or note names

2022-11-26 Thread Robin Bannister
ignored by the ChordNames context. ChordNames ignores BarLines too. But you probably didn't realize the implications of the snippet 'Adding bar lines to ChordNames context' at https://lilypond.org/doc/v2.22/Documentation/notation/displaying-chords#customizing-chord-names It uses \

Adding text to chord names or note names

2022-11-25 Thread Koen van Walstijn
Hello,I got started with LilyPond a week ago to write some arrangements for a small group, in the context of improvised music. (I'm really enjoying the program, it's very intuitive and the output looks great!)I have a question about customizing chord names. From manuals/snippets/etc

Re: Chord names from two voices

2022-11-16 Thread Luca Fascione
Yes! Thanks Jean, I don't know why I didn't see this myself. Cheers! L On Thu, 17 Nov 2022, 00:27 Jean Abou Samra, wrote: > Le 16/11/2022 à 23:44, Luca Fascione a écrit : > > Hi all, > > is there a way to run the chord naming logic from two voices (in my > > case bass and guitar comping part) t

Re: Chord names from two voices

2022-11-16 Thread Jean Abou Samra
Le 16/11/2022 à 23:44, Luca Fascione a écrit : Hi all, is there a way to run the chord naming logic from two voices (in my case bass and guitar comping part) together? I have written-out guitar parts with rootless chords, and the roots are in the double bass parts, and was hoping I could quic

Chord names from two voices

2022-11-16 Thread Luca Fascione
Hi all, is there a way to run the chord naming logic from two voices (in my case bass and guitar comping part) together? I have written-out guitar parts with rootless chords, and the roots are in the double bass parts, and was hoping I could quickly recover a starting point of a progression from t

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Ralph Palmer
On Sun, Sep 5, 2021, 11:16 AM Lukas-Fabian Moser wrote: > Hi Ralph, > > Uhh. . . This is great except for the alternative endings. Without going > too crazy, is there a way to get the chord names above the alternative > ending spanners? > > Yes, by moving the Volta_engrave

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Lukas-Fabian Moser
Hi Ralph, Uhh. . . This is great except for the alternative endings. Without going too crazy, is there a way to get the chord names above the alternative ending spanners? Yes, by moving the Volta_engraver from score level to the specific staff over with the volta brackets should be placed

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Ralph Palmer
Sorry - I forgot to attach my example. Ralph On Sun, Sep 5, 2021 at 10:50 AM Ralph Palmer wrote: > On Sun, Sep 5, 2021 at 9:01 AM Lukas-Fabian Moser wrote: > >> Hi Ralph, >> Am 05.09.21 um 17:45 schrieb Ralph Palmer: >> >> I would like to increase the space b

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Ralph Palmer
On Sun, Sep 5, 2021 at 9:01 AM Lukas-Fabian Moser wrote: > Hi Ralph, > Am 05.09.21 um 17:45 schrieb Ralph Palmer: > > I would like to increase the space between the chord names and the highest > notes or top staff lines. I've looked in the LilyPond Snippets and in the > S

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Ralph Palmer
On Sun, Sep 5, 2021 at 9:01 AM Lukas-Fabian Moser wrote: > Hi Ralph, > Am 05.09.21 um 17:45 schrieb Ralph Palmer: > > I would like to increase the space between the chord names and the highest > notes or top staff lines. I've looked in the LilyPond Snippets and in the > S

Re: Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Lukas-Fabian Moser
Hi Ralph, Am 05.09.21 um 17:45 schrieb Ralph Palmer: I would like to increase the space between the chord names and the highest notes or top staff lines. I've looked in the LilyPond Snippets and in the Snippets Repository, and can't find anything that helps. I'm guessing it

Increasing vertical distance between chord names and notes/staves

2021-09-05 Thread Ralph Palmer
Greetings - I'm grateful for LilyPond, Frescobaldi, and all the helpful members of this mailinglist. I'm running LilyPond 2.23.2 with Frescobaldi 3.0.0 under Linux-5.4.0-81-generic-x86_64-with-glibc2.29 and Ubuntu 20.04.3 LTS. I would like to increase the space between the chord nam

Re: Engraving chord names in Linux

2021-06-19 Thread Jogchum Reitsma
Op 23-12-2018 om 11:57 schreef Thomas Morley: Am Fr., 21. Dez. 2018 um 17:54 Uhr schrieb Jogchum Reitsma : Hi list, I use lilypond 2.18 on OpenSuse Tumbleweed (the rolling distro from Suse). On that combination, displaying chord names in .pdf-form gives error messages grom ghostscript (gs

Re: Strange behaviour of chord names?

2021-03-13 Thread Christian Masser
Ah, that explains it. Thank you very much, Aaron! Am Sa., 13. März 2021 um 16:02 Uhr schrieb Aaron Hill < lilyp...@hillvisions.com>: > On 2021-03-13 6:11 am, Christian Masser wrote: > > [...] > > mySoloChordsA = \chords { > > c1 f g c > > } > > [...] > > I think you want \chordmode, not \chords

Re: Strange behaviour of chord names?

2021-03-13 Thread Aaron Hill
On 2021-03-13 6:11 am, Christian Masser wrote: [...] mySoloChordsA = \chords { c1 f g c } [...] I think you want \chordmode, not \chords, when defining the variables. \chords { ... } is shorthand for \new ChordNames \chordmode { ... } if I recall. -- Aaron Hill

Strange behaviour of chord names?

2021-03-13 Thread Christian Masser
Hey all! Just had a curious case concerning chord names. Typesetting a small jazz piece and - as always - wanted to keep my file tidy, so I put the chords for the solo-section in a variable as they are the same for every solo. But somehow Lilypond seems to make a difference, if one inserts the

Re: Stacked tensions for chord names

2021-03-02 Thread Robin Bannister
Aaron Hill wrote: [...] no-bs = #'(baseline-skip . 0) [...] Was there intention behind that variable name? ;-) The official reason: very short, to avoid any wrapping of code. It just happened - while culling hyphens - and then seemed fun. Cheers, Robin

Re: Stacked tensions for chord names

2021-03-01 Thread Aaron Hill
On 2021-03-01 7:13 am, Robin Bannister wrote: And if you are fed up with baseline-skip you can set it to 0, and it then stays 0 whatever the font-size. [...] no-bs = #'(baseline-skip . 0) [...] Was there intention behind that variable name? ;-) -- Aaron Hill

Re: Stacked tensions for chord names

2021-03-01 Thread Robin Bannister
Valentin Petzel wrote: My problem is that at Position where the markup is defined the fontsize is in fact not known. I’ve solved the issue for the time being by using a on-the-fly call to modify the baseline-skip. You can fetch the font-size with#:properties ((font-size 0)) as done in \tr

Re: Stacked tensions for chord names

2021-03-01 Thread Valentin Petzel
Hello Robin, thank you for your reply. The problem here is that \fontsize is never called. The font-size is entirely handled by the grob callback ly:text-interface::print. My problem is that at Position where the markup is defined the fontsize is in fact not known. I’ve solved the issue for the

Re: Stacked tensions for chord names

2021-03-01 Thread Robin Bannister
Valentin Petzel wrote: Does anyone of you have an idea how one can set baseline-skip to be proportional to the font-size? Well, when the markup command \fontsize changes the font size, it changes the baseline-skip too, to keep it proportional. But this means that if you are overriding the b

Stacked tensions for chord names

2021-02-28 Thread Valentin Petzel
Hello! I’ve done a small modification to achieve stacked tensions for ChordNames. My problem is now that the baseline-skip of the used columns need to change depending on the font size. Does anyone of you have an idea how one can set baseline-skip to be proportional to the font-size? Cheers, V

Re: Chord names starting right after the anacrusis

2019-07-03 Thread Aaron Hill
On 2019-07-03 4:03 pm, Vicente Sanches wrote: Hi everyone, I want to write a song in which the melody begins in upbeat (anacrusis) and the chords begins on the next bar. I have tried a lot but i can't make the chord names appear after the anacrustic bar. It often helps to provi

Chord names starting right after the anacrusis

2019-07-03 Thread Vicente Sanches
Hi everyone, I want to write a song in which the melody begins in upbeat (anacrusis) and the chords begins on the next bar. I have tried a lot but i can't make the chord names appear after the anacrustic bar. Can you help me? P.s. Sorry for my english. Regards, Vicente Sa

Re: Engraving chord names in Linux

2018-12-23 Thread Federico Bruni
Il giorno dom 23 dic 2018 alle 11:57, Thomas Morley ha scritto: how comes you're using 2.18.2 with Ghostscript 9.26? This ly-version is released with Ghostscript 8.70. He's probably using a package installed from the repository instead of lilypond.org installer. Linux packagers try to a

Re: Engraving chord names in Linux

2018-12-23 Thread Thomas Morley
Am Fr., 21. Dez. 2018 um 17:54 Uhr schrieb Jogchum Reitsma : > > Hi list, > > I use lilypond 2.18 on OpenSuse Tumbleweed (the rolling distro from Suse). On > that combination, displaying chord names in .pdf-form gives error messages > grom ghostscript (gs) in the transition fr

Engraving chord names in Linux

2018-12-21 Thread Jogchum Reitsma
Hi list, I use lilypond 2.18 on OpenSuse Tumbleweed (the rolling distro from Suse). On that combination, displaying chord names in .pdf-form gives error messages grom ghostscript (gs) in the transition from a .ps-file to a .pdf-file. When for example the snippet from http://lilypond.org/doc

Re: Intervalic Chord Names

2018-08-29 Thread Aaron Hill
On 2018-08-29 10:25, Tom Swan wrote: continued reply... Re: accidentals, yes that will be necessary. Do you have an idea about how to go about that? Hi Tom, Building upon the code from scm/chord-name.scm (and related files) as well as (LSR #750)[1], here is a more complete version of the int

Re: Intervalic Chord Names

2018-08-29 Thread Tom Swan
continued reply... Re: accidentals, yes that will be necessary. Do you have an idea about how to go about that? ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Intervalic Chord Names

2018-08-29 Thread Tom Swan
That worked perfectly! Thank you. I am not very familiar with lilypond internals, but now I am also intrigued by your solution. I am determined now to learn scheme. :-) > > Do you need lowercase numbers (i to vii) too? And how about accidentals? > I am comfortable with IVm7 or IV-7 but I am c

Re: Intervalic Chord Names

2018-08-28 Thread Malte Meyn
Am 28.08.18 um 18:57 schrieb Jacques Menu Muzhic: Do I guess it right that you’d like tonality-relative numbers, i.e. V7 for A7 in D major? That’s indeed probable. There are two possibilities what to do about that: 1. Get the tonic from the key signature as it is done in these snippets: ht

Re: Intervalic Chord Names

2018-08-28 Thread Jacques Menu Muzhic
go through.) > > It came through; it just seems like it was overlooked by many. > >> I need some help figuring out how to change chord names (C, F, G) into >> intervals such as (I, IV, V). The short example below displays a timing >> diagram for a melodic line, but I would

Re: Intervalic Chord Names

2018-08-28 Thread Malte Meyn
Am 28.08.18 um 15:29 schrieb Tom Swan: Sorry for duplication but my previous try didn't seem to go through.) It came through; it just seems like it was overlooked by many. I need some help figuring out how to change chord names (C, F, G) into intervals such as (I, IV, V). The

Intervalic Chord Names

2018-08-28 Thread Tom Swan
Hello. (Trying this again in plain text. Sorry for duplication but my previous try didn't seem to go through.) I need some help figuring out how to change chord names (C, F, G) into intervals such as (I, IV, V). The short example below displays a timing diagram for a melodic line, but I

Intervalic Chord Names

2018-08-24 Thread Tom Swan
Hello. I need some help figuring out how to change chord names (C, F, G) into intervals such as (I, IV, V). The short example below displays a timing diagram for a melodic line, but I would also like to display the chords C7, F7 as generic intervals I7 IV7. Manually setting the text would okay

re: chord names - C Delta 7 chord, \chords and markup text

2018-07-10 Thread Flaming Hakama by Elaine
> > -- Forwarded message -- > From: Reilly Farrell > To: lilypond-user > Date: Fri, 29 Jun 2018 23:37:20 -0700 > Subject: chord names - C Delta 7 chord? > Hi All, > > I'm looking for a solution for printing a C Delta 7 chord name (so that 7 > pr

Re: chord names - C Delta 7 chord?

2018-06-30 Thread Reilly Farrell
Thank you Thomas! Works like a charm. :) On Sat, Jun 30, 2018 at 1:08 AM, Thomas Morley wrote: > 2018-06-30 8:37 GMT+02:00 Reilly Farrell : > > Hi All, > > > > I'm looking for a solution for printing a C Delta 7 chord name (so that 7 > > prints clearly after the delta symbol). I started off wt

Re: chord names - C Delta 7 chord?

2018-06-30 Thread Thomas Morley
2018-06-30 8:37 GMT+02:00 Reilly Farrell : > Hi All, > > I'm looking for a solution for printing a C Delta 7 chord name (so that 7 > prints clearly after the delta symbol). I started off wth the failed > attempt below and haven't had much success anyway else: > > \version "2.18.2" > > \score { > <

Re: chord names - C Delta 7 chord?

2018-06-30 Thread Jacques Menu Muzhic
Hello Reilly, chExceptions is you friend, look for « Customizing chord names » in the LP Notation Reference. JM > Le 30 juin 2018 à 08:37, Reilly Farrell a écrit : > > Hi All, > > I'm looking for a solution for printing a C Delta 7 chord name (so that 7 > prints

chord names - C Delta 7 chord?

2018-06-29 Thread Reilly Farrell
Hi All, I'm looking for a solution for printing a C Delta 7 chord name (so that 7 prints clearly after the delta symbol). I started off wth the failed attempt below and haven't had much success anyway else: \version "2.18.2" \score { << \relative c' { c4 c c c | } \chords { c1:maj7.7 } >> \lay

Re: Multiple chord names?

2017-12-15 Thread Robert Schmaus
JM > >> Le 15 déc. 2017 à 11:15, Robert Schmaus a écrit : >> >> If you mean alternative chords on top of each other, I just place two >> ChordNames contexts in the score and have the upper one contain mostly >> spacers plus the alternative chord names wherever o

Re: Multiple chord names?

2017-12-15 Thread Menu Jacques
r, I just place two > ChordNames contexts in the score and have the upper one contain mostly > spacers plus the alternative chord names wherever one is needed ... > > Best, Robert > > On 15 Dec 2017, at 00:20, Menu Jacques <mailto:imj-...@bluewin.ch>> wrote: >

Re: Multiple chord names?

2017-12-15 Thread Robert Schmaus
If you mean alternative chords on top of each other, I just place two ChordNames contexts in the score and have the upper one contain mostly spacers plus the alternative chord names wherever one is needed ... Best, Robert > On 15 Dec 2017, at 00:20, Menu Jacques wrote: > > He

Multiple chord names?

2017-12-14 Thread Menu Jacques
Hello folks, MusicXML has the notion of multiple chord names, i.e.: 480 0 major 4 4

Re: Help changing chord names

2017-07-18 Thread Tom Swan
Thank you Matthew. This issue is way more complex than I anticipated. I will dig into the resources you referenced. So far, at least, d1:11.13 does what I need in the interim.On July 18, 2017 at 10:04 AM msk...@ansuz.sooke.bc.ca wrote:On Mon, 17 Jul 2017, Tom Swan wrote:Hi. How do I change the cho

Re: Help changing chord names

2017-07-18 Thread mskala
On Mon, 17 Jul 2017, Tom Swan wrote: > Hi. How do I change the chord name to just D13, not D9 13, as in the > following snippet? This is probably rudimentary, but I'm a bit rusty and > just getting back into lp. Thanks. -- Tom Looks like the use case for this thread: http://lilypond.1069038.n5.

Re: Help changing chord names

2017-07-18 Thread Tom Swan
Kieren -- Thank you! That's exactly what I was looking for and couldn't find in the library. I will certainly welcome the new chord name enhancements when available. -- TomOn July 18, 2017 at 8:06 AM Kieren MacMillan wrote:Hi Tom,Please don't quote an entire digest in your answer.How do I edit th

Re: Help changing chord names

2017-07-18 Thread Kieren MacMillan
Hi Tom, Please don't quote an entire digest in your answer. > How do I edit the engraved text shown for a chord name? I am stuck for a > solution. 1. Override the name (cf. ), and choose your chords acco

Re: Help changing chord names

2017-07-18 Thread Tom Swan
Yes, I guess it's fortunate that does works for the snippet example, but it doesn't help me with my other numerous chord names I have to change (I am designing custom fretboard diagrams for guitar). Specifying the chord as an 11th when it isn't that at all is not very attractive

Re: Help changing chord names

2017-07-17 Thread Thomas Morley
2017-07-18 0:54 GMT+02:00 Tom Swan : > Hi. How do I change the chord name to just D13, not D9 13, as in the > following snippet? This is probably rudimentary, but I'm a bit rusty and > just getting back into lp. Thanks. -- Tom > > \version "2.18.2" > songChords = \chordmode { > {d1:13} | > } > \sco

Help changing chord names

2017-07-17 Thread Tom Swan
Hi. How do I change the chord name to just D13, not D9 13, as in the following snippet? This is probably rudimentary, but I'm a bit rusty and just getting back into lp. Thanks. -- Tom \version "2.18.2"songChords = \chordmode { {d1:13} |} \score { << \new ChordNames { \songChords } >> \layout { }}

Re: chord names

2017-02-13 Thread Klaus Blum
ion) (= alteration FLAT) 0.094725 - Cheers again, Klaus -- View this message in context: http://lilypond.1069038.n5.nabble.com/chord-names-tp199985p200070.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user

Re: chord names

2017-02-13 Thread Klaus Blum
Klaus -- View this message in context: http://lilypond.1069038.n5.nabble.com/chord-names-tp199985p200068.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: chord names

2017-02-13 Thread Noeck
Hi Klaus, this worked now beautifully and I tweaked it a bit to my liking. One more question: Can I also make the accidentals in the superscript smaller or shift them? Like in \chords { c:13- } Best, Joram ___ lilypond-user mailing list lilypond-user@

Re: chord names

2017-02-11 Thread Noeck
Hi Klaus, > that's strange... I've tested it with 2.19.37 and it worked - see below. > (In my last post, comments in the code were messed up by unwanted line > breaks, I hope this time it works.) Thank you. This time it works for me with 2.19.49. I'll check again, but probably I did some mistake

Re: chord names

2017-02-11 Thread Klaus Blum
quot; )) ))) ) ) ) internationalChords = { \set Staff.chordRootNamer = #note-name->international-markup % \unset Staff.chordNoteNamer } \new ChordNames \chordmode { as a ais bes b bis bes:m bis:m bes:9 bis:9 as/bes \internationalChords as a ais bes b bis bes:m bis:m bes:9 bis:

Re: chord names

2017-02-11 Thread Noeck
Hi Klaus, Am 11.02.2017 um 01:04 schrieb Klaus Blum: > Maybe there's an easier way, but here's a first solution. It's a quick > modification of > http://www.lilypondforum.de/index.php?topic=824.0 This looks so much nicer than the default chords. Is it correct that this function only works for "s

Re: chord names

2017-02-11 Thread Benjamin Bloomfield
(make-tiny-markup (make-raise-markup raise; > make-tiny-markup instead of make-smaller-markup > (make-musicglyph-markup > (assoc-get alt > standard-alteration-glyph-name-alist "" >

Re: chord names

2017-02-10 Thread Klaus Blum
(make-musicglyph-markup (assoc-get alt standard-alteration-glyph-name-alist "" )) ))) ) ) ) internationalChords = { \set Staff.chordRootNamer = #note-name->international-markup

Re: chord names

2017-02-10 Thread Klaus Blum
Hi Ben, Benjamin Bloomfield wrote > I'm trying to figure out how to make chord modifiers like "sus4" not be > superscript. for your first issue you can modify what you've found in "Customizing chord names": %

chord names

2017-02-10 Thread Benjamin Bloomfield
I'm trying to figure out how to make chord modifiers like "sus4" not be superscript. It seems like there should be a simple way to do that, but I don't see it in the "Customizing Chord Names" <http://lilypond.org/doc/v2.18/Documentation/notation/displaying-chords

Re: How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-21 Thread jmechmech
\override RepeatSlash.extra-offset = #'(0 . 1) \override PercentRepeat.extra-offset = #'(0 . 1) } } } -- View this message in context: http://lilypond.1069038.n5.nabble.com/Re-How-can-I-get-a-repeat-symbol-in-the-chord-names-part-of-lead-sheet-t

Re: How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-20 Thread Flaming Hakama by Elaine
I didn't see this answered yet, so here is my reply... On Thu, Jan 12, 2017 at 7:45 PM, wrote: > -- Forwarded message -- > From: Rob Torop > To: lilypond-user@gnu.org > Cc: > Date: Fri, 13 Jan 2017 03:45:13 + > Subject: How can I get a repeat symbol

Re: How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-13 Thread Rob Torop
Thanks very much Pierre! On Fri, Jan 13, 2017 at 3:00 AM Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> wrote: > Hi Rob, > See: http://lsr.di.unimi.it/LSR/Item?id=908 > Cheers, > Pierre > > 2017-01-13 4:45 GMT+01:00 Rob Torop : > > I'm trying to figure out what to use for a chord name

Re: How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-13 Thread Klaus Blum
\ChordNames \consists "Percent_repeat_engraver" } } } % However, the percent sign will be centered above the measure. Cheers, Klaus -- View this message in context: http://lilypond.1069038.n5.nabble.com/How-can-I-get-a-repeat-symbol-in-the-chord-names-part-of-lead-sheet-

Re: How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-13 Thread Pierre Perol-Schneider
Hi Rob, See: http://lsr.di.unimi.it/LSR/Item?id=908 Cheers, Pierre 2017-01-13 4:45 GMT+01:00 Rob Torop : > I'm trying to figure out what to use for a chord name to get a "repeat" > (percent) sign over one of the measures. Below is a complete small > example. I want C over the first measure, rep

How can I get a repeat symbol in the chord names part of lead sheet?

2017-01-12 Thread Rob Torop
I'm trying to figure out what to use for a chord name to get a "repeat" (percent) sign over one of the measures. Below is a complete small example. I want C over the first measure, repeat over the second measure, and D over the third measure. I'm sure this is trivial - I just can't find it! \ve

Re: coding chord-names in language "italiano"

2016-11-15 Thread Noeck
Hi Ming, where is the problem? If you use "italiano" as language, you can use do re mi ... If you use "english" as language, you can use c d e ... Both work as expected for notes and for chord names. You cannot write \language "italiano" and use english note n

coding chord-names in language "italiano"

2016-11-15 Thread MING TSANG
Hi, lilyponders: I try "italiano" to transcribe a music score because the original is in numeric "do re mi". It works fine until I try to code chord names.  I got unrecongized string error.   But I change the language to "english", there is no error. Question: wh

Re: Chord names in a score

2016-08-19 Thread Andy Deitrich
Thanks so much for taking a look! > On Aug 19, 2016, at 6:02 PM, Malte Meyn wrote: > > > > Am 19.08.2016 um 23:32 schrieb Andy Deitrich: >> It put the mandolin chords on a new, 3rd staff. It probably has something >> to do with defining "mando" as a staff. I don't know how else to get the >>

Re: Chord names in a score

2016-08-19 Thread Malte Meyn
Am 19.08.2016 um 23:32 schrieb Andy Deitrich: It put the mandolin chords on a new, 3rd staff. It probably has something to do with defining "mando" as a staff. I don't know how else to get the mandolin chords to appear above the staff. Does this help explain? Your code is far from minimal (

  1   2   3   4   5   >