Chord diagrams

2017-02-20 Thread Don Gingrich
A simple problem, I hope

I have a local copy of predefined-guitar-fretboards.ly

I used a C chord with G bass and noticed
that I got a three string chord

open G 1st fret B and open E 

This * is* a C with the bottom note a G

But every guitar player I know would play that as

G on the low E string
C on the A string
E on the D string
G string open
C on the B string 
and Open High E 

What do I need to hack in the predefined-guitar-fretboards.ly
to get the chord diagram that I want?

I tried the following without success

\storePredefinedDiagram #default-fret-table \chordmode {c:/g}
#guitar-tuning
#"3-4;3-3;2-2;o;1-1;o;"

But it didn't break everything else, so I may be close



Cheers,

-Don
-- 
Don Gingrich


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


Centering Chord Diagrams

2016-08-20 Thread Patrick Millier
Hi,


I'm leaning Lilypond and cannot find this one ... I got some chord diagrams
at the beginning of my score and would like to center them.


Can someone help me with this (I'm sure simple) problem.


Here's my Score

---

\version "2.18.2"
\include "predefined-guitar-fretboards.ly"

somewhereChords = \chordmode {
  \override ChordName.font-size = #2
  %\global
  a1:m c1 e1:m e1:m
  a1:m f1 c1 e1:m
  a1:m f1 c1 e1:m
  a1:m f1 e1:m g1
  a1:m f1 c1 g1
  a1:m
}

somewhereChordDiagrams = \chordmode {
  a1:m c e:m f g
}

somewhereMelody = \relative c {
  \clef "treble_8"
  \numericTimeSignature \time 4/4
  \tempo 4 = 120
  % \key d \major
  \bar ".|:"
a8^"Intro" e' a e b' a c e,
c e c' g  d' g, e' e,
e, b' e b g' e a e
e, b' e b g' e a e
  \bar ":|." \break
a,^"Verse 1 Pt 1" e' a e c' a e a
c, f a f c' a f a
c, e g e c' g e g
e, b' e b g' e b e \break
a, e' a e c' a e a
c, f a f c' a f a
c, e g e c' g e g
e, b' e b g' e b e
  \bar "||" \break
a,^"Verse 1 Pt 2" e' a e c' a e a
c, e g e c' g e g
e, b' e b g' e b e
g, b d b g' d b d \break
a e' a e c' a e a
c, e g e c' g e g
e, b' e b g' e b e
g, b d b g' d b d \break
a^"Chorus"
  \bar "|."
}

somewhereLyrics = \lyricmode {
  \repeat unfold 32 { \skip 8 }
  Lost _ _ in _ _ the dark-
  _ ness, _ _ _ _ _ _
  hop- _ ing _ for a _ sign
  _ _ _ _ _ _ _ In-
  stead _ there's on- _ _ ly si-
  _ lence _ _ _ _ _ _
  Can _ you _ hear my _ scream?
  _ _ _ _ _ _ _ _
  Ne- _ ver _ _ _ stop _
  ho- _ ping, _ _ _ Need
  to _ know _ _ _ _ where you
  are _ _ _ _ _ But _
  one _ thing's _ _ _ for _
  sure _ _ _ _ _ You're _
  al- _ ways _ in my _ heart
  _ _ _ _ _ _ _ _
}

\book {
  \paper {
#(set-paper-size "letter")
  }
  \bookpart {
\header {
  %dedication = "Dedication"
  title = "Somewhere"
  subtitle = "The Silent Force"
  %instrument = "Instrument"
  %poet = "Poet"
  composer = "Within Temptation"
  %meter = "Meter"
  %arranger = "Arranger"
  %tagline = "Tagline goes at the bottom of the last page"
  %copyright = "Copyright goes at the bottom of the first page"
}
\score {
  <<
\context ChordNames {
  \somewhereChordDiagrams
}
\context FretBoards {
  \somewhereChordDiagrams
}
  >>
}
\score {
  {
<<
  \new ChordNames \somewhereChords
  \new Staff { \somewhereMelody }
  \addlyrics { \set fontSize = #-3 \somewhereLyrics }
  \new TabStaff { \somewhereMelody }
>>
  }
  \layout {
indent = 0.0\cm
  }
  \header {
%piece = "piece 1"
%opus = "opus 1"
  }
}
  }
  \bookpart {
\header {
  dedication = "Dedication"
  title = "Title"
  subtitle = "Subtitle"
  instrument = "Instrument"
  poet = "Poet"
  composer = "Composer"
  meter = "Meter"
  arranger = "Arranger"
  tagline = "Tagline goes at the bottom of the last page"
  copyright = "Copyright goes at the bottom of the first page"
}

\score {
  {
s1
  }
  \header {
piece = "piece 1"
opus = "opus 1"
  }
}
\score {
  {
s1
  }
  \header {
piece = "piece 2 (On the same page)"
opus = "opus 2"
  }
}
%\pageBreak
\score {
  {
s1
  }
  \header {
piece = "piece 3 (On a new page ... oupsss)"
opus = "opus 3"
  }
}
  }
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Chord diagrams

2017-02-20 Thread Thomas Morley
2017-02-20 11:51 GMT+01:00 Don Gingrich :
> A simple problem, I hope
>
> I have a local copy of predefined-guitar-fretboards.ly

For which purpose?

>
> I used a C chord with G bass and noticed
> that I got a three string chord
>
> open G 1st fret B and open E
>
> This * is* a C with the bottom note a G
>
> But every guitar player I know would play that as
>
> G on the low E string
> C on the A string
> E on the D string
> G string open
> C on the B string
> and Open High E

Well, being a guitar player myself, I'd say it's the most common, yes,
but ofcourse not the only possibility.

>
> What do I need to hack in the predefined-guitar-fretboards.ly
> to get the chord diagram that I want?
>
> I tried the following without success
>
> \storePredefinedDiagram #default-fret-table \chordmode {c:/g}
> #guitar-tuning
> #"3-4;3-3;2-2;o;1-1;o;"
>
> But it didn't break everything else, so I may be close

\version "2.19.52"

\include "predefined-guitar-fretboards.ly"

\storePredefinedDiagram #default-fret-table \chordmode {c/g}
#guitar-tuning
#"3-4;3-3;2-2;o;1-1;o;"

\new FretBoards \chordmode { c/g }

works here.


HTH,
  Harm

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


Re: Chord diagrams

2017-02-20 Thread Johan Vromans
> \storePredefinedDiagram #default-fret-table \chordmode {c/g}
> #guitar-tuning
> #"3-4;3-3;2-2;o;1-1;o;"

I'd like to see someone playing this as shown :) .

(Try swapping the 3rd and 4th fingers)

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


Re: Chord diagrams

2017-02-20 Thread Thomas Morley
2017-02-20 22:59 GMT+01:00 Johan Vromans :
>> \storePredefinedDiagram #default-fret-table \chordmode {c/g}
>> #guitar-tuning
>> #"3-4;3-3;2-2;o;1-1;o;"
>
> I'd like to see someone playing this as shown :) .
>
> (Try swapping the 3rd and 4th fingers)

I've noticed the fingering and considered to change it as you propose.
But it is indeed a possibility. I use it sometimes myself for situations like

\new Voice { \clef "G_8" << 1 \\ { c4-3 g,-4 e, g,-4 } >> }

Best,
  Harm

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


Re: Chord diagrams

2017-02-21 Thread Patrick Schmidt
You can find a huge library of predefined guitar fretboards here: 
https://github.com/Philomelos/lilypond-predefined-fretboards/blob/master/README.org
 (The documentation is not complete but I think you get the gist.  You can find 
loads of examples in the test files 
(https://github.com/Philomelos/lilypond-predefined-fretboards/tree/master/EADGBE/test).)

HTH
Patrick
On 20.02.2017, at 11:51, Don Gingrich  wrote:

> A simple problem, I hope
> 
> I have a local copy of predefined-guitar-fretboards.ly
> 
> I used a C chord with G bass and noticed
> that I got a three string chord
> 
> open G 1st fret B and open E 
> 
> This * is* a C with the bottom note a G
> 
> But every guitar player I know would play that as
> 
> G on the low E string
> C on the A string
> E on the D string
> G string open
> C on the B string 
> and Open High E 
> 
> What do I need to hack in the predefined-guitar-fretboards.ly
> to get the chord diagram that I want?
> 
> I tried the following without success
> 
> \storePredefinedDiagram #default-fret-table \chordmode {c:/g}
>   #guitar-tuning
>   #"3-4;3-3;2-2;o;1-1;o;"
> 
> But it didn't break everything else, so I may be close
> 
> 
> 
> Cheers,
> 
> -Don
> -- 
> Don Gingrich
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user


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


Guitar Chord Diagrams

2004-12-18 Thread Rick Sutphin
Hello,

Is there any way to put guitar chord diagrams in a score.

Thanks,
Rick



___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Linux:Noteedit:Guitar chord diagrams

2002-05-24 Thread Joerg Anders

Version 2.0.0 of the musical scores editor NoteEdit is
available:

http://rnvs.informatik.tu-chemnitz.de/~jan/noteedit/noteedit.html

New features:

- guitar chord diagrams
- chord annotation
- tse3-0.2.3 (and tse3-0.1.2, tse3-0.1.2) compatible
- bug converning replay of non-balanced repeats fixed

  x Many thanks to Mikhail Yakshin <[EMAIL PROTECTED]>.
  x I used about 2000 lines from his kguitar project
  x (http://kguitar.sourceforge.net).

  x Note! kguitar is still under development. So excuse some
  x small problems. For instance: If you can't your preferred chord
  x diagram for a certain chord please set the fingers "by hand"!

Some aspects of exporting guitar chord diagrams!


MUP can deal with chord names and chord diagrams. But it expects
a chord diagram dictionary at top of file. Actually this is
no problem. But if you attach 2 different chord diagrams
for the same chord name there is no possibility to to distinguish
the 2 forms. To give every chord diagram an unique name
NoteEdit adds some underscores to the chord name. So be not
surprised if you named a chord "C7" and "_C7" is printed!

MUP cannot deal with a mix of some chords with chord diagram
and some chords without chord diagram. MUP cannot deal with barre.

MusiXTeX has an additional package called MusiXGui. This allows
 to annotate guitar chord diagrams and chord names. It
 works but unfortunately there is no possibility to add
 a fret information. So, if the fret is not equal 1
 NoteEdit appends the fret information to the chord name.

 MusiXTeX/MusiXGui can only deal with full barre.

LilyPond cannot deal with guitar chord diagrams. Actually it has a
 special feature for chord name annotation. But this is unusable
 for NoteEdit export because it tries reverse mapping from
 pitch combination to chord name. Thus, NoteEdit exports the
 chord names as ordinary uptext. Unfortunately, LilyPond
 does not take the width of the uptext into account. So
 it can happen the chords overlap.
 LilyPond has problems with # signs in uptext. Therfore # is
 converted into +.
PMX can neither deal with chord names nor with guitar cord diagrams.
Thus, NoteEdit omits the information.

-- 
J.Anders, Chemnitz, GERMANY ([EMAIL PROTECTED])


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



guitar chord diagrams

2002-06-05 Thread Patrick Stanistreet

I wrote a little script to layout guitar chord diagrams
which can be placed above a line of music.  You
need lilypond-book to put it to use. I created a little
demo which is described in the file gtrchord-eps.html

It still needs work on the chord name labels as I haven't
figured out how to display chords names like  Am69.

It has been hosted on savannah.gnu.org and can be
downloaded at.

http://freesoftware.fsf.org/download/gtrchord-eps/

The tarball contains all the demo files.  I haven't
tried in on windows yet but hope to have a report
soon.




___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: Centering Chord Diagrams

2016-08-21 Thread Thomas Morley
Hi Patrick,

2016-08-21 5:17 GMT+02:00 Patrick Millier :
> Hi,
>
>
> I'm leaning Lilypond and cannot find this one ... I got some chord diagrams
> at the beginning of my score and would like to center them.

Please try to ask more specific.

To center something may mean: vertical, horizontal or both.
Centering in relation to what? Self-centered? On another object?

Anyway, I guess you mean horizantal on page.

Then
http://lsr.di.unimi.it/LSR/Item?id=250
may be what you're looking for.

>
> Can someone help me with this (I'm sure simple) problem.
>
>
> Here's my Score

Please use a minimal example.
http://lilypond.org/website/tiny-examples.html

Asking precisely, with a _minimal_ example increases your chance for a
fast and meaningful reply.

Cheers,
  Harm

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


Re: Guitar Chord Diagrams

2004-12-18 Thread Ferenc Wagner
Rick Sutphin <[EMAIL PROTECTED]> writes:

> Is there any way to put guitar chord diagrams in a score.

warning: Lilypond version string not found, using default 2.4.

See User Manual -> Popular Music -> Fret diagrams
-- 
Feri.


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Guitar Chord Diagrams

2004-12-18 Thread David Raleigh Arnold
On Saturday 18 December 2004 09:04 am, Rick Sutphin wrote:
> Hello,
>
> Is there any way to put guitar chord diagrams in a score.

I would like to know that too.  You can make good ones
with code page 437, and there is a font from IBM that's free
to use, so that could presumably be done using \verbatim
somehow.  That would use minimal memory and have much less file 
size increase than with images,  It should be very easy but I 
don't have the faintest idea how to put that together.

If you want black blobs, you could make them with noteedit,
screen capture as pngs, and insert those.  Noteedit's diagrammer
is really quick and easy to use.  It's been abandoned, I believe?
daveA


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Guitar Chord Diagrams

2004-12-18 Thread David Raleigh Arnold
On Saturday 18 December 2004 10:07 am, Ferenc Wagner wrote:
> Rick Sutphin <[EMAIL PROTECTED]> writes:
> > Is there any way to put guitar chord diagrams in a score.
>
> warning: Lilypond version string not found, using default 2.4.
>
> See User Manual -> Popular Music -> Fret diagrams

Fantastic!  It's hard to keep up.  :-)  daveA


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Linux:Noteedit:Guitar chord diagrams

2002-05-24 Thread Jan Nieuwenhuizen

Joerg Anders <[EMAIL PROTECTED]> writes:

> LilyPond cannot deal with guitar chord diagrams. Actually it has a
>  special feature for chord name annotation. But this is unusable
>  for NoteEdit export because it tries reverse mapping from
>  pitch combination to chord name.

That's too bad.  Why can't you use it, how does NoteEdit calculate
chord names?

>  Thus, NoteEdit exports the
>  chord names as ordinary uptext. Unfortunately, LilyPond
>  does not take the width of the uptext into account. So
>  it can happen the chords overlap.

Too bad you haven't asked, LilyPond can do both.  I'm sure it's
described in the manual.  See:

#(define flat '((raise . 0.2) (font-relative-size . -1)
  (music (named "accidentals--1"
#(define sharp '((raise . 0.4) (font-relative-size . -1)
  (music (named "accidentals-1"

\score {
\notes {
c2^"very wide and long text" c \break
\fatText  % short for \property Voice.textNonEmpty = ##t
c2^"wide and long text with $\\sharp$ and $\\flat$" c | \break
c^#`("C " ,sharp)
c^#`("C " ,flat)
}
\paper{
indent = 0.0\mm
linewidth  = 70.0\mm
}
}


>  LilyPond has problems with # signs in uptext. Therfore # is
>  converted into +.

If you go through TeX, you can't use the tex macro parameter character
`#'.  However, you can use $\sharp$ and $\flat$ (how do you do flat
and natural now?).  A much more beautiful option is to use markup text
and use LilyPond's feta font characters.  See above.

Greetings,
Jan.

-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Stand alone guitar chord diagrams

2013-10-12 Thread Kevin Tough
First thanks for the help getting started with Lilypond!

In my course documentation I will need a flexible means to generate
chord diagrams. I would be greatly surprised that Lilypond could be used
for this but perhaps someone has experience with this and would make a
suggestion as to what I might use. I'm running Linux and would prefer
something open source.

Namaste,

Kevin Tough 


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


Re: Stand alone guitar chord diagrams

2013-10-12 Thread Eluze
Kevin Tough wrote
> First thanks for the help getting started with Lilypond!
> 
> In my course documentation I will need a flexible means to generate
> chord diagrams. I would be greatly surprised that Lilypond could be used
> for this but perhaps someone has experience with this and would make a
> suggestion as to what I might use. I'm running Linux and would prefer
> something open source.

well, if you'd give us some more details or examples, we could try an
attempt!?
Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Stand-alone-guitar-chord-diagrams-tp152190p152206.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: Stand alone guitar chord diagrams

2013-10-13 Thread Federico Bruni
2013/10/12 Kevin Tough 

> In my course documentation I will need a flexible means to generate
> chord diagrams. I would be greatly surprised that Lilypond could be used
> for this but perhaps someone has experience with this and would make a
> suggestion as to what I might use. I'm running Linux and would prefer
> something open source.
>

Something like this (very simple)?

\version "2.16.2"

\markup {
  \fill-line { \bold "Major chords in first position" }
}
\markup {
  \fret-diagram #"6-x;5-3;4-2;3-o;2-1;1-o;"
  \fret-diagram #"6-x;5-o;4-o;3-2;2-3;1-2;"
  \fret-diagram #"6-o;5-2;4-2;3-1;2-o;1-o;"
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Stand alone guitar chord diagrams

2013-10-13 Thread SoundsFromSound
Or do you mean something like this, with notes as well?

\version "2.17.24"

global = {
  \time 4/4
  \key c \major
  }

chordNames = \chordmode {
  \global
  c1 g1 e1 d1
  
}

melody = \relative c'' {
  \global
  c4 d e f
  g g f g
  e g a g 
  d d d d
}


\score {
  <<
\new ChordNames \chordNames
\new FretBoards \chordNames
\new Staff { \melody }

  >>
 
}





Federico Bruni-5 wrote
> 2013/10/12 Kevin Tough <

> kevin@

> >
> 
>> In my course documentation I will need a flexible means to generate
>> chord diagrams. I would be greatly surprised that Lilypond could be used
>> for this but perhaps someone has experience with this and would make a
>> suggestion as to what I might use. I'm running Linux and would prefer
>> something open source.
>>
> 
> Something like this (very simple)?
> 
> \version "2.16.2"
> 
> \markup {
>   \fill-line { \bold "Major chords in first position" }
> }
> \markup {
>   \fret-diagram #"6-x;5-3;4-2;3-o;2-1;1-o;"
>   \fret-diagram #"6-x;5-o;4-o;3-2;2-3;1-2;"
>   \fret-diagram #"6-o;5-2;4-2;3-1;2-o;1-o;"
> }
> 
> ___
> lilypond-user mailing list

> lilypond-user@

> https://lists.gnu.org/mailman/listinfo/lilypond-user





-----
composer | sound designer 
 LilyPond Tutorials (for beginners) --> http://bit.ly/bcl-lilypond
--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Stand-alone-guitar-chord-diagrams-tp152190p152224.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: Stand alone guitar chord diagrams

2013-10-13 Thread Federico Bruni
don't forget this after the \version statement:

\include "predefined-guitar-fretboards.ly"




2013/10/13 SoundsFromSound 

> Or do you mean something like this, with notes as well?
>
> \version "2.17.24"
>
> global = {
>   \time 4/4
>   \key c \major
>   }
>
> chordNames = \chordmode {
>   \global
>   c1 g1 e1 d1
>
> }
>
> melody = \relative c'' {
>   \global
>   c4 d e f
>   g g f g
>   e g a g
>   d d d d
> }
>
>
> \score {
>   <<
> \new ChordNames \chordNames
> \new FretBoards \chordNames
> \new Staff { \melody }
>
>   >>
>
> }
>
>
>
>
>
> Federico Bruni-5 wrote
> > 2013/10/12 Kevin Tough <
>
> > kevin@
>
> > >
> >
> >> In my course documentation I will need a flexible means to generate
> >> chord diagrams. I would be greatly surprised that Lilypond could be used
> >> for this but perhaps someone has experience with this and would make a
> >> suggestion as to what I might use. I'm running Linux and would prefer
> >> something open source.
> >>
> >
> > Something like this (very simple)?
> >
> > \version "2.16.2"
> >
> > \markup {
> >   \fill-line { \bold "Major chords in first position" }
> > }
> > \markup {
> >   \fret-diagram #"6-x;5-3;4-2;3-o;2-1;1-o;"
> >   \fret-diagram #"6-x;5-o;4-o;3-2;2-3;1-2;"
> >   \fret-diagram #"6-o;5-2;4-2;3-1;2-o;1-o;"
> > }
> >
> > ___
> > lilypond-user mailing list
>
> > lilypond-user@
>
> > https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
>
>
>
> -
> composer | sound designer
>  LilyPond Tutorials (for beginners) --> http://bit.ly/bcl-lilypond
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/Stand-alone-guitar-chord-diagrams-tp152190p152224.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
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Stand alone guitar chord diagrams

2013-10-13 Thread Federico Bruni
Hi Kevin

please reply to the list, you'll get much better help than from me (and the
replies will be available in the archives).
Have a look at the snippet called "Customizing fretboard fret diagrams"
down from here:
http://lilypond.org/doc/v2.16/Documentation/notation/common-notation-for-fretted-strings#predefined-fret-diagrams

Before asking here, I suggest searching the LilyPond index of Notation
Reference (bottom of left menu). It took me few seconds to get from there
to that snippet...
Then of course you can ask if you have problems.

HTH
Federico



2013/10/13 Kevin Tough 

> Hi Federico,
>
> is it possible to add color and numbers to the individual black dots? In
> what documentation or searching for what text can I find further
> information?
>
> Thanks,
>
> Kevin Tough
>
> On Sun, 2013-10-13 at 09:54 +0200, Federico Bruni wrote:
> > 2013/10/12 Kevin Tough 
> > In my course documentation I will need a flexible means to
> > generate
> > chord diagrams. I would be greatly surprised that Lilypond
> > could be used
> > for this but perhaps someone has experience with this and
> > would make a
> > suggestion as to what I might use. I'm running Linux and would
> > prefer
> > something open source.
> >
> > Something like this (very simple)?
> >
> >
> > \version "2.16.2"
> >
> >
> > \markup {
> >   \fill-line { \bold "Major chords in first position" }
> > }
> > \markup {
> >   \fret-diagram #"6-x;5-3;4-2;3-o;2-1;1-o;"
> >   \fret-diagram #"6-x;5-o;4-o;3-2;2-3;1-2;"
> >   \fret-diagram #"6-o;5-2;4-2;3-1;2-o;1-o;"
> > }
> >
> >
>
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


winnt lilypond-book works with guitar chord diagrams

2002-06-10 Thread Patrick Stanistreet

I had a chance to test lilypond on winnt.
using lilypond-book and the chord diagrams

It appears that the version of latex
distributed with the cygwin download
doesnt support fancy headings so I left
that out.  Also lilypond-book choked
on drumpitch-init.ly so I have left
out the percussion line for now.


Otherwise everything compiled just
fine.


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: winnt lilypond-book works with guitar chord diagrams

2002-06-10 Thread Jan Nieuwenhuizen

Patrick Stanistreet <[EMAIL PROTECTED]> writes:

> I had a chance to test lilypond on winnt.
> using lilypond-book and the chord diagrams
>
> It appears that the version of latex
> distributed with the cygwin download
> doesnt support fancy headings so I left
> that out.

By default, only the tex library packages texmf-tiny (or texmf-base)
are installed, fancyheadings are in the texmf-extra package.

> Also lilypond-book choked
> on drumpitch-init.ly so I have left
> out the percussion line for now.

Care to send the error message you got?

> Otherwise everything compiled just
> fine.

Jan.

-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user



Re: winnt lilypond-book works with guitar chord diagrams

2002-06-12 Thread Mats Bengtsson

> I had a chance to test lilypond on winnt.
> using lilypond-book and the chord diagrams
> 
> It appears that the version of latex
> distributed with the cygwin download
> doesnt support fancy headings so I left
> that out.

As Jan answered, it's available in the texmf-extra package, 
so just rerun setup.exe. When asked to select packages, click
on view to see the full list of packages and select this 
package.

> Also lilypond-book choked
> on drumpitch-init.ly so I have left
> out the percussion line for now.

This file is called "drumpitch.ly" in the 1.4.x versions, 
you probably tried an example file made for the experimental
1.5.x series (not available for Windows).

   /Mats



___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user