Re: unable to install version 2.0

2020-09-05 Thread Tom Swan
David: That's great info! Thanks. --Tom

> On September 4, 2020 9:08 PM David Wright  wrote:
> 
> 
> On Fri 04 Sep 2020 at 17:11:27 (-0400), Tom Swan wrote:
> > […] Yes, I do set the PATH (in my case in .bashrc)
> 
> Not the best place, though many people will notice nothing wrong.
> When you enter a subshell, you get another modification of PATH
> at each and every level. Presumably you source or "dot in" .bashrc
> in your profile. If you want the lowdown, I always consult
> https://mywiki.wooledge.org/DotFiles
> (Neither he nor I uses a DM/DE.)
> 
> > and I also use bash aliases similarly.
> 
> Aliases are fine: you normally only expect them to work in interactive
> shells, and they don't grow like PATH and other environment variables
> when defined recursively.
> 
> > I might have the install problem solved.
> 
> Great. And thanks for posting text.
> 
> Cheers,
> David.

http://www.tomswan.com



Re: unable to install version 2.0

2020-09-04 Thread Tom Swan
Hi David,
Thanks. Yes, I do set the PATH (in my case in .bashrc) and I also use bash 
aliases similarly. I might have the install problem solved. I did "apt-get 
remove lilypond" and then I executed the install script as before. I had 
mistakenly run the wrong version previously, but when I tried again, v2.0 hang 
until I removed the older version. After that, v2.0 now runs correctly. (PS: I 
installed to a private ~/bin folder that I use for various things.) Thank you 
for your help getting me going. -- Tom



Re: unable to install version 2.0

2020-09-04 Thread Tom Swan


 
 
  
   PS: Output of /usr/local/bin/lilypond is "No such file or directory"
  
  
   
On September 4, 2020 2:18 PM Kevin Barry  wrote:
   
   

   
   

   
   
Hi Tom,

 


 It looks like you might have two versions installed: 2.18 from apt and 2.20 from the script you downloaded (although normally the downloaded on takes precedence).


 


 Can you check the output of:


 /usr/local/bin/lilypond --version


 ?


 


 Kevin

   
   
   

 On Fri, Sep 4, 2020, 19:09 Tom Swan <
 t...@tomswan.com> wrote:
 


 
 
  
   I copied and executed script "
   lilypond-2.20.0-1.linux-64.sh" from the Downloads page. It seems to run but afterwards, "lilypond --version" still reports GNU LilyPond 2.18.2. What am I doing wrong? Also tried apt-get upgrade lilypond, which reports  "lilypond is already the newest version (2.18.2-12build1)" so now I'm stuck. How do I get the newest release? 
  
  
   
  
 

   
  
  
   
  
  
   http://www.tomswan.com
   
 




unable to install version 2.0

2020-09-04 Thread Tom Swan


 
 
  
   I copied and executed script "lilypond-2.20.0-1.linux-64.sh" from the Downloads page. It seems to run but afterwards, "lilypond --version" still reports GNU LilyPond 2.18.2. What am I doing wrong? Also tried apt-get upgrade lilypond, which reports  "lilypond is already the newest version (2.18.2-12build1)" so now I'm stuck. How do I get the newest release? 
   
  
  
   
   
 




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 curious how you would select 
lowercase ii, vi, etc.? If the chord is c:m7 would that choose lowercase 
somehow? That would be pretty cool. Now I'm thinking of expanding this to 
respect the key (e.g. if the key is changed to F, would the intervalic chords 
remain unchanged in the output?) I don't really need to do that; just wondering 
aloud.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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 would also like to display the chords C7, F7 as 
generic intervals I7 IV7. Manually setting the text would okay -- I'm not 
looking for some kind of automatic translation, although that would be neat. I 
know I can do this with markup, but I do not want to add markup statements to 
noteValues! Do I need to set chordRootNamer somehow? Or is there another 
solution? Thanks for any advice.

\version "2.18.2"

globalDefs = {
  \clef "treble_8" 
  \key c \major
  \time 4/4
}

noteValues = {
  a4 a4 a8[ a8] a4 |
  a4 a4 a2 |
  a4 a8[ a8] a4 a4 |
  a2 a8[ a8] a4 \bar "|."
}

chordValues = \chordmode {
  % \set chordRootNamer = ???
  c1:7 f1:7 c1:7 c1:7 
}

\score { << 
  \new ChordNames {
\chordValues 
  }
  \new RhythmicStaff = "Timing" <<
  \new Voice = "Rhythm" {
\globalDefs
\omit RhythmicStaff.Fingering
\improvisationOn
\noteValues
  } % Rhythm Voice 
  >>
>> 
}

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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 -- I'm not looking for some kind of automatic translation, although that would be neat. I know I can do this with markup, but I do not want to add markup statements to noteValues! Do I need to set chordRootNamer somehow? Or is there another solution? Thanks for any advice.\version "2.18.2"globalDefs = { \clef "treble_8" \key c \major \time 4/4}noteValues = { a4 a4 a8[ a8] a4 | a4 a4 a2 | a4 a8[ a8] a4 a4 | a2 a8[ a8] a4 \bar "|."}chordValues = \chordmode { % \set chordRootNamer = ??? c1:7 f1:7 c1:7 c1:7 }\score { <<  \new ChordNames { \chordValues } \new RhythmicStaff = "Timing" << \globalDefs \new Voice = "Rhythm" { \globalDefs \omit RhythmicStaff.Fingering \improvisationOn \noteValues } % Rhythm Voice   }http://www.tomswan.com
 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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 chord name to just D13, not D9 13, as in thefollowing snippet? This is probably rudimentary, but I'm a bit rusty andjust getting back into lp. Thanks. -- TomLooks like the use case for this thread: http://lilypond.1069038.n5.nabble.com/ChordMarkup-context-tt204258.html--Matthew Skalamsk...@ansuz.sooke.bc.ca People before principles.http://ansuz.sooke.bc.ca/http://www.tomswan.com
 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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 the engraved text shown for a chord name? I am stuck for a solution.Override the name (cf. ), and choose your chords accordingly.Wait for Charles to be done with the current GSoC chord name enhancements.Hope this helps!Kieren.Kieren MacMillan, composer‣ website: www.kierenmacmillan.info‣ email: i...@kierenmacmillan.infohttp://www.tomswan.com
 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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. How do I edit the engraved text shown for a chord name? I am stuck for a solution. Thank you.On July 18, 2017 at 5:56 AM lilypond-user-requ...@gnu.org wrote:Send lilypond-user mailing list submissions to lilypond-user@gnu.orgTo subscribe or unsubscribe via the World Wide Web, visit https://lists.gnu.org/mailman/listinfo/lilypond-useror, via email, send a message with subject or body 'help' to lilypond-user-requ...@gnu.orgYou can reach the person managing the list at lilypond-user-ow...@gnu.orgWhen replying, please edit your Subject line so it is more specificthan "Re: Contents of lilypond-user digest..."Today's Topics:Re:MsLily - LilyPond Add-In for Word (Michael Rivers)Help changing chord names (Tom Swan)Re:Help changing chord names (Thomas Morley)Re:MsLily - LilyPond Add-In for Word (Helge Kruse)Re:MsLily - LilyPond Add-In for Word (Denton Thomas)Re:MsLily - LilyPond Add-In for Word (Martin Tarenskeen)Re:MsLily - LilyPond Add-In for Word (Denton Thomas)--Message: 1Date: Mon, 17 Jul 2017 09:33:38 -0700 (MST)From: Michael Rivers To: lilypond-user@gnu.orgSubject: Re: MsLily - LilyPond Add-In for WordMessage-ID: <1500309218996-204478.p...@n5.nabble.com>Content-Type: text/plain; charset=us-asciiThat's fantastic! I'm installing it now. Thank you so much.--View this message in context: http://lilypond.1069038.n5.nabble.com/MsLily-LilyPond-Add-In-for-Word-tp204473p204478.htmlSent from the User mailing list archive at Nabble.com.--Message: 2Date: Mon, 17 Jul 2017 18:54:32 -0400 (EDT)From: Tom Swan To: lilypond-user@gnu.orgSubject: Help changing chord namesMessage-ID: <1799652464.49158.1500332072...@webmail1.networksolutionsemail.com>Content-Type: text/plain; charset="us-ascii"An HTML attachment was scrubbed...URL: --Message: 3Date: Tue, 18 Jul 2017 01:12:21 +0200From: Thomas Morley To: Tom Swan Cc: lilypond-user Subject: Re: Help changing chord namesMessage-ID: Content-Type: text/plain; charset="UTF-8"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 thefollowing snippet? This is probably rudimentary, but I'm a bit rusty andjust getting back into lp. Thanks. -- Tom\version "2.18.2"songChords = \chordmode {{d1:13} |}\score {<<\new ChordNames { \songChords }>\layout { }}Probably easiest:\chords { c:11.13 }HTH, Harm--Message: 4Date: Tue, 18 Jul 2017 06:27:53 +0200From: Helge Kruse To: Denton Thomas Cc: lilypond-user@gnu.orgSubject: Re: MsLily - LilyPond Add-In for WordMessage-ID: Content-Type: text/plain; charset="utf-8"The website announces a free and a standard edition. What are your plansfor difference between these two editions?Best regardsHelge-- next part --An HTML attachment was scrubbed...URL: --Message: 5Date: Tue, 18 Jul 2017 15:20:21 +1000From: Denton Thomas To: lilypond-user@gnu.orgSubject: Re: MsLily - LilyPond Add-In for WordMessage-ID: Content-Type: text/plain; charset="utf-8"Thanks for asking, Helge.I would certainly be happy to hear feature requests. So far, the bigrequest is a Word-for-Mac port. I'm doing this between full-time teachingand family time, though ... so I'd like to know there is significantinterest before I put the time in.The Free version currently cuts back the Settings Dialog: access tocommandline options for LilyPond, resolution settings, default imagetransparency, and editor customizations (like font and pretty print, orhiding the panel by default on startup), logging, document inspection (listall the MsLily images, etc). As well, the Free edition blocks out theAdvanced editor. That editor provides stock wrapper/boilerplate code(\page, \layout, etc) for margins, line width, ragged-right, etc. All thatcan be modified in the current Standard Edition.Long-term, these two are started but incomplete in the Stndard Edition (SE):Full capacity Templates menu: this is a Ribbon button that provides a wayto collect and quickly re-use common code excerpts. Both editions includesome stock templates (a blank staff, a clef, etc), but I expect theStandard Edition to have a user modify-able menu and load-able codecollections. The goal is to let others write and distribute their own codecollections for use in MsLily.insert image with MIDI using OLEI'm expecting a free-mium-like model, where the Free Edition is alwaysfree, but SE helps direct what is created next ...Admittedly, it would be good to have a few drops put in the grad sch

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 { }}
 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Please help with fretboard diagram spacing

2015-11-17 Thread Tom Swan
I didn't get any response to my request for advice on adjusting spacing between
a fretboard diagram and the associated staff. Does anybody have any suggestions?
I am stuck and need help with this. Thanks! Here is the snippet -- I would like
more space below the fretboard diagram and the staff, but I've tried every
override and \paper setting I would find with no results.

\version "2.18.2"
<<
 \new Staff {
   \new Voice = “scale” \relative c {
 4^\markup {
 \override #'(size . 4.0) {
   \override #'(fret-diagram-details . (
 (orientation . #'landscape )
 (finger-code . #'in-dot )
 (dot-color . #'black)
 (dot-radius . 0.35)
 (dot-position . 0.5)
 (top-fret-thickness . 7)
 (fret-count . 7)) )
   \fret-diagram-verbose #'(
 (place-fret 6 1 1 inverted)
 (place-fret 6 3 2)
 (place-fret 6 5 4)
   ) 
 }
   } 
| 
   }
 }
>>

http://www.tomswan.com

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Fretboard and Staff Spacing

2015-11-15 Thread Tom Swan
Hi Lily Friends! I would like to increase the space between the fretboard
diagram, used here to show a scale fingering, and the top of the staff. I have
tried \paper settings and various overrides with no results. Suggestions please?
Thank you! -- Tom

\version "2.18.2"
<<
  \new Staff {
\new Voice = "scale" \relative c {
  4^\markup {
   \override #'(size . 4.0) {
  \override #'(fret-diagram-details . (
   (orientation . #'landscape )
   (finger-code . #'in-dot )
   (dot-color . #'black)
   (dot-radius . 0.35)
   (dot-position . 0.5)
   (top-fret-thickness . 7)
   (fret-count . 7)) )
\fret-diagram-verbose #'(
  (place-fret 6 1 1 inverted)
  (place-fret 6 3 2)
  (place-fret 6 5 4)
) 
}
  }   
 | 
}
  }
>>

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user