Putting fret diagrams in a separate score

2011-03-09 Thread Marc Hohl
Hello list, I try to put fret diagrams at the beginning of a piece. My input file looks like this: \version "2.13.50" \score { << \new ChordNames \chordmode { g:m } \new Lyrics \lyricmode { \markup { \fret-diagram #"w:4;4-o;3-o;2-1;1-3;" }

Re:Can anybody help me with fret diagrams?

2010-09-18 Thread Father Gordon Gilbert
Wow! You're absolutely right! Thanks so much! Wonder why that error doesn't bork the diagram completely? Gordon+ Message: 3 > Date: Fri, 17 Sep 2010 16:31:03 -0700 (PDT) > From: -Eluze > Subject: Re: Can anybody help me with fret diagrams? > To: lilypond-user@gnu.org &

Re: Can anybody help me with fret diagrams?

2010-09-17 Thread -Eluze
the colon in the end makes it! (should be semicolon) Father Gordon Gilbert wrote: > > I tried out my first fret diagrams just recently and I ran into a puzzling > situation. > > Whereas in standard guitar tuning, the A major chord diagram would look > like > this: >

Can anybody help me with fret diagrams?

2010-09-17 Thread Father Gordon Gilbert
I tried out my first fret diagrams just recently and I ran into a puzzling situation. Whereas in standard guitar tuning, the A major chord diagram would look like this: aFretDiagram = \markup \fret-diagram #"6-o;5-o;4-2;3-2;2-2;1-o:" And the standard A7 diagram would look

Re: Ukulele Barre Chord Fret Diagrams

2010-04-29 Thread Carl Sorensen
On 4/28/10 6:39 PM, "keith Luke" wrote: > Carl, > > This is exactly what I was looking for. > > Thank you very much. > > Aloha, > > Keith I believe that we have a big set of predefined ukulele chords in the development release 2.13.x. You may find it easier to use a FretBoards context w

Re: Ukulele Barre Chord Fret Diagrams

2010-04-28 Thread keith Luke
Carl, This is exactly what I was looking for. Thank you very much. Aloha, Keith On Wed, Apr 28, 2010 at 1:15 PM, Carl Sorensen wrote: > > > > On 4/28/10 2:34 PM, "keith Luke" wrote: > > > I'm using ^\markup \fret-diagram #"w:4;4-o;3-o;2-o;1-3;"

Re: Ukulele Barre Chord Fret Diagrams

2010-04-28 Thread Carl Sorensen
On 4/28/10 2:34 PM, "keith Luke" wrote: > I'm using ^\markup \fret-diagram #"w:4;4-o;3-o;2-o;1-3;"  but I would like to > use fret diagrams with barre. > > I tried ^\markup \fret-diagram #"c:4-1-1;4-3;3-2;2-1;1-1;", but it shows > "gu

Ukulele Barre Chord Fret Diagrams

2010-04-28 Thread keith Luke
I'm using ^\markup \fret-diagram #"w:4;4-o;3-o;2-o;1-3;" but I would like to use fret diagrams with barre. I tried ^\markup \fret-diagram #"c:4-1-1;4-3;3-2;2-1;1-1;", but it shows "guitar" barre fret diagrams. How can I print ukulele chord fret diagram

Re: Suppressing the o in fret diagrams

2010-03-02 Thread Carl Sorensen
On 3/2/10 1:59 AM, "keith Luke" wrote: > Is it possible to suppress the open string indicator in fret diagrams? > > Instead of \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" I would like the equivalent > of \fret-diagram #"4-2-2;3-1-1;2- ;1- ;" where the o doe

Re: Suppressing the o in fret diagrams

2010-03-02 Thread keith Luke
Leaving the open strings out works for most fret diagrams, but when I generate an F chord for ukulele, #"2-2;o;1-1;o;" becomes #"2-2;1-1;" and the wrong fret diagram results. Is there a way to put a "null" spacer for the open strings? Thanks, Keith On Mon, M

Re: Suppressing the o in fret diagrams

2010-03-02 Thread Thomas Scharkowski
Original-Nachricht Is it possible to suppress the open string indicator in fret diagrams? Instead of \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" I would like the equivalent of \fret-diagram #"4-2-2;3-1-1;2- ;1- ;" where the o does not appear on strings

Suppressing the o in fret diagrams

2010-03-02 Thread keith Luke
Is it possible to suppress the open string indicator in fret diagrams? Instead of \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" I would like the equivalent of \fret-diagram #"4-2-2;3-1-1;2- ;1- ;" where the o does not appear on strings 2 and three.

Re: avoid multiple fret diagrams

2010-01-22 Thread Pascal Obry
Carl, Thanks for the help. > As an entirely different approach, you might tag the markup with a > TabStaffOnly tag, and then only keep the TabStaffOnly tagged music in the > tab staff. You can read about tagged music in the Noation Reference 3.3.2 > Different editions from one source. Indeed I

Re: avoid multiple fret diagrams

2010-01-21 Thread Carl Sorensen
gt; >> } > > Agreed. I understand that (I'm computer scientist:). > >> If you look at it like this, you can see that you've duplicated the fret >> diagram. >> >> The easiest solution is so put your fret diagrams in a different >> variable, an

Re: avoid multiple fret diagrams

2010-01-21 Thread Carl Sorensen
On 1/21/10 12:27 PM, "Pascal Obry" wrote: > > > I'd like to have the fret diagram only printed over the TabStaff and not > the staff. Given the following small code snippet I have the fret > diagram displayed twice. Is there a solution to this? Using macros? I'm > quite new to lilypond and d

Re: avoid multiple fret diagrams

2010-01-21 Thread Pascal Obry
g b >} > >\new TabStaff { > d ^ \markup \fret-diagram-terse #"x;x;o;2-2;3-3;1-1;" g b >} > >> > } Agreed. I understand that (I'm computer scientist:). > If you look at it like this, you can see that you've duplicated the fre

Re: avoid multiple fret diagrams

2010-01-21 Thread James Bailey
m-terse #"x;x;o;2-2;3-3;1-1;" g b } >> } If you look at it like this, you can see that you've duplicated the fret diagram. The easiest solution is so put your fret diagrams in a different variable, and include that variable only where you want it. i.e., Diagrams = {

avoid multiple fret diagrams

2010-01-21 Thread Pascal Obry
I'd like to have the fret diagram only printed over the TabStaff and not the staff. Given the following small code snippet I have the fret diagram displayed twice. Is there a solution to this? Using macros? I'm quite new to lilypond and did not found a solution... Notes = { c d ^ \markup \fret

Re: fret diagrams

2009-07-15 Thread Patrick Schmidt
Problem solved. With 2.13.3 I don't get any error messages. Thanks again for your help! Patrick Original-Nachricht > Datum: Wed, 15 Jul 2009 21:45:12 +0200 > Von: "Patrick Schmidt" > An: lilypond-user@gnu.org > Betreff: Re: fret diagrams > Hi Ma

Re: fret diagrams

2009-07-15 Thread Patrick Schmidt
e I should update to 2.13.3?! Cheers, Patrick Original-Nachricht > Datum: Wed, 15 Jul 2009 21:25:21 +0200 > Von: Marc Hohl > An: Patrick Schmidt > Betreff: Re: fret diagrams > Patrick Schmidt schrieb: > > Hi all, > > > > I'm desperately

fret diagrams

2009-07-15 Thread Patrick Schmidt
Hi all, I'm desperately trying to typeset a simple C major fret diagram (guitar: first position). Here's my minimal example: \version "2.12.2" \include "predefined-guitar-fretboards.ly" mychords = \chordmode { c } { << \context ChordNames { \mychords }

Re: [Frescobaldi] Re: easy insert fret diagrams (with Frescobaldi)

2009-03-23 Thread Grammostola Rosea
Wilbert Berendsen wrote: Op zaterdag 21 maart 2009, schreef Grammostola Rosea: I was wondering if there's an easy way to insert Fret Diagrams for guitar in Lilypond. Most of the time I use templates from Frescobaldi, but I don't see an Fret Diagram option there. I like to displa

Re: easy insert fret diagrams (with Frescobaldi)

2009-03-21 Thread Carl D. Sorensen
On 3/21/09 4:12 PM, "Grammostola Rosea" wrote: >> > Thanks. > Doing it your way, you get predefined fret diagrams right? What if you > want to have customized fret boards, like chords on the 9th fret etc. ? The term "predefined fret diagrams" just mea

Re: easy insert fret diagrams (with Frescobaldi)

2009-03-21 Thread Grammostola Rosea
Carl Sorensen wrote: Grammostola Rosea gmail.com> writes: Hi, I was wondering if there's an easy way to insert Fret Diagrams for guitar in Lilypond. Most of the time I use templates from Frescobaldi, but I don't see an Fret Diagram option there. I like to display the fre

Re: easy insert fret diagrams (with Frescobaldi)

2009-03-21 Thread Carl Sorensen
Grammostola Rosea gmail.com> writes: > > Hi, > > I was wondering if there's an easy way to insert Fret Diagrams for > guitar in Lilypond. Most of the time I use templates from Frescobaldi, > but I don't see an Fret Diagram option there. > > I like to d

easy insert fret diagrams (with Frescobaldi)

2009-03-20 Thread Grammostola Rosea
Hi, I was wondering if there's an easy way to insert Fret Diagrams for guitar in Lilypond. Most of the time I use templates from Frescobaldi, but I don't see an Fret Diagram option there. I like to display the fret diagram and the chord name above it. Thanks in ad

Re: Top aligned fret diagrams

2008-11-19 Thread Carl D. Sorensen
On 11/19/08 12:06 PM, "seppo silaste" <[EMAIL PROTECTED]> wrote: > How do I get all fret diagrams to the same height (ie. the top of all > the diagrams on the same height). No they go up and down with the notes > they are attached to, which I find ugly. > Use the

Re: Empty fret diagrams

2008-11-19 Thread Carl D. Sorensen
On 11/19/08 12:03 PM, "seppo silaste" <[EMAIL PROTECTED]> wrote: > Is there any way to create empty fret diagrams with a specified number > of frets? I would like to create empty music sheets for composing (am > writing a book on jazz-blues rhythm). Sitting by the

Top aligned fret diagrams

2008-11-19 Thread seppo silaste
How do I get all fret diagrams to the same height (ie. the top of all the diagrams on the same height). No they go up and down with the notes they are attached to, which I find ugly. regards: Seppo ___ lilypond-user mailing list lilypond-user

Empty fret diagrams

2008-11-19 Thread seppo silaste
Is there any way to create empty fret diagrams with a specified number of frets? I would like to create empty music sheets for composing (am writing a book on jazz-blues rhythm). Sitting by the computer and writing it directly to lilypond is too restricting. regards: Seppo

Re: Fret diagrams

2008-06-02 Thread Marc Hohl
his functionality, but it would require new properties to be added, which would further pollute the namespace. I've never seen a fret diagram with variable string thicknesses. Is this a common notation for you, or is this something experimental you'd like to have? Carl I have seen such fret di

Re: Fret diagrams

2008-06-02 Thread Carl Sorensen
Thomas Scharkowski t-online.de> writes: > > Hello, > > can the lines of a fret diagram get diffent widths? > For example 6th string thick, 5th string thinner, 1st thinnest? > > Thank you > Thomas > Currently, no. It would be a relatively simple fix to add this functionality, but it would r

Fret diagrams

2008-05-31 Thread Thomas Scharkowski
Hello, can the lines of a fret diagram get diffent widths? For example 6th string thick, 5th string thinner, 1st thinnest? Thank you Thomas ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Colliding fret-diagrams

2007-07-21 Thread Mats Bengtsson
It's much easier to provide a relevant answer to your question if you include a small example .ly file that illustrates your problem. Also, don't forget to tell what LilyPond version you use. How do you typeset the fret diagrams? Do you attach them to note like c^\markup \fret-diagram

Re: Colliding fret-diagrams

2007-07-20 Thread Kieren MacMillan
Hi Ed, considering how complex a process creating musical notation is, I find it amazing that LP does what it does. No question: I would never go back to Finale (or any other notation application, for that matter). you have to kludge a few things to get what you want. Yes, but... I get

RE: Colliding fret-diagrams

2007-07-20 Thread Ed Ardzinski
> > I wonder why fret-diagrams aren't treated more like note objects.> > No > > idea.> > I wonder why fret-diagrams aren't treated more like note objects.> > > > No idea. IIRC, the fret diagrams are markups, so they are treated as simply text. &g

Re: Colliding fret-diagrams

2007-07-20 Thread Kieren MacMillan
Hi Rob, I think it's just that I don't understand what the X-extent really controls. It controls how wide Lilypond thinks a given object is. It looks like each diagram needs to have an adjustment specially tailored for it, which isn't very convenient. Ugh. I wonder wh

Re: Colliding fret-diagrams

2007-07-20 Thread Rob Duncan
different values and I wasn't able to find one that resulted in good spacing for all fret-diagrams. In other words, a value that was good for one diagram would be too loose or too tight somewhere else. It looks like each diagram needs to have an adjustment specially tailored for it, which i

Re: Colliding fret-diagrams

2007-07-20 Thread Kieren MacMillan
Hi Rob, Thanks for the suggestion. I did the following chrest = \once \override Rest #'X-extent = #'(0 . 5) chnote = \once \override NoteColumn #'X-extent = #'(0 . 6) I then put \chrest before a rest that has an associated chord change, and similarly \chnote before a note. Is that what

Re: Colliding fret-diagrams

2007-07-20 Thread Rob Duncan
Hi Kieren, Thanks for the suggestion. I did the following and it sorta worked: chrest = \once \override Rest #'X-extent = #'(0 . 5) chnote = \once \override NoteColumn #'X-extent = #'(0 . 6) I then put \chrest before a rest that has an associated chord change, and similarly \chnote before a no

Re: Colliding fret-diagrams

2007-07-20 Thread Kieren MacMillan
Hi Rob: I think I want something like \fatText, but perhaps there's a better way. Can anyone suggest something? Suggestion (untested): for each note that has a colliding fret diagram above it, explicitly set its #'X-extent to compensate (i.e., provide padding). Hope this helps (i.e., w

Colliding fret-diagrams

2007-07-20 Thread Rob Duncan
I'm trying to notate some rapid chord changes with \fret-diagram but the diagrams are overlapping each other. Presumably this is because the widths of the chord diagrams aren't affecting the layout of the melody notes that I'm attaching the \fret-diagrams to. What is the best way

RE: Transposable Fret Diagrams for Guitar

2007-01-01 Thread Carl D. Sorensen
e Chords context would need to be modified to ignore the index to the fretboard string. My proposal is to use the Lilypond generated notes as the index to the hash table. I want to be able to use the exact same input to generate the chord name output (in the Chords context) and to generate the fret

RE: Transposable Fret Diagrams for Guitar

2006-12-31 Thread Rick Hansen (aka RickH)
he current FretBoards and depicted as frets. Rick -- View this message in context: http://www.nabble.com/Transposable-Fret-Diagrams-for-Guitar-tf2901891.html#a8110445 Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Transposable Fret Diagrams for Guitar

2006-12-31 Thread Carl D. Sorensen
I'm proposing a method for getting transposable fret diagrams for the guitar. The method I propose is different from the current FretBoard functionality. The FretBoard context takes a set of notes and determines a fingering that will allow the playing of that set of notes. This is a very u

RE: Transposable Fret Diagrams for Guitar

2006-12-29 Thread Carl D. Sorensen
's a bunch of music currently out there that just uses chord names, and Lilypond supports those chord names. And almost all of the currently published music uses the same fret diagrams for the common chords if it includes fret diagrams. This is the market my proposed feature is after, not the

RE: Transposable Fret Diagrams for Guitar

2006-12-29 Thread Carl D. Sorensen
- is transposable > - is _human readable_ > * D: > - cannot handle opened chords and barre chords when transposing > - cannot handle barre > - Names are not smartly handled > - does not handle color (shame on me I haven't tested :-/) >

Re: Transposable Fret Diagrams for Guitar

2006-12-29 Thread passport
e very simple example. Rick - Original Message - From: "Carl D. Sorensen" <[EMAIL PROTECTED]> To: "Lilypond User" Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, December 29, 2006 12:58 PM Subject: Transposable Fret Diagrams for Guitar I

"standard" fret diagrams \include file

2006-04-19 Thread Kieren Richard MacMillan
Hello, all -- I'm not a guitarist. I'm currently engraving one of my "pop tunes", and would like to print a piano-guitar-vocal score with fret diagrams. I don't want to reinvent the wheel (i.e., by building every fret diagram from scratch, using my fake book a

Re: using \include for fret diagrams

2006-01-19 Thread Shelagh Manton
[snip] >> > No special instructions. The text in the frets.ly file will just > replace the text" > '\include "frets.ly"' > > Paul Scott Good, I'll try it out asap. SOM ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailm

Re: using \include for fret diagrams

2006-01-19 Thread Paul Scott
real question is how to define a macro for a particular fret diagram. You can simply do: myfret = \markup \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" and use the corresponding macro like c^\myfret /Mats I have been able to work out fret diagrams within a particular file, but I was h

Re: using \include for fret diagrams

2006-01-19 Thread Shelagh Manton
real question is how to define a macro for > a particular fret diagram. You can simply do: > myfret = \markup \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" > > and use the corresponding macro like > > c^\myfret > > /Mats > I have been able to work out fret d

Re: using \include for fret diagrams

2006-01-19 Thread Mats Bengtsson
ly do: myfret = \markup \fret-diagram #"4-2-2;3-1-1;2-o;1-o;" and use the corresponding macro like c^\myfret /Mats Shelagh Manton wrote: I've been thinking about using fret diagrams in various lead sheets for singing and finding it awkward to use fret diagrams. If I wrote a fret.l

using \include for fret diagrams

2006-01-18 Thread Shelagh Manton
I've been thinking about using fret diagrams in various lead sheets for singing and finding it awkward to use fret diagrams. If I wrote a fret.ly file with my usual set of frets in it can I include it as you would files such as english.ly etc? Actually I know you can do this; probably wha

Re: Positioning of Fret Diagrams and Chord Names

2005-07-28 Thread VSD
use #'extra-offset or #'padding. (as an alternative you could also add an invisible voice and attach the fret diagrams to the invisible notes in that voice) to add chord names, use ChordNames instead of a 2nd markup. See section "Printing Chord Names" in the manual.

Positioning of Fret Diagrams and Chord Names

2005-07-28 Thread Sacha Standen
Version 2.6.1   Is there any way of adjusting the position of fret diagrams, other than \right-align, \centre-align or \left-align? With the following input for example:   a8 b4.~^\markup { \left-align { \fret-diagram #"6-x;5-2;4-4;3-2;2-2;1-4;" } } b4. a8   I need to plac

Number size in fret diagrams

2005-06-22 Thread Bertalan Fodor
I'm trying to set the size of the number in fret diagrams. I tried this, but doesn't work, and also tried \fontsize #-2. c'^\markup \override #'(dot-radius . 0.55) { \override #'(finger-code . in-dot) \override #'(barre-type . straight) {

<    1   2