Re: changing the appearance for single dots in fret boards

2014-06-07 Thread Pierre Perol-Schneider
2014-06-06 9:59 GMT+02:00 Marc Hohl :


> I have some fret diagrams where one dot is placed and removed according
> to the underlying rhythm, so it would be great to either change its
> color or put it in parentheses.
>

Hallo Marc,
See discussion here :
http://www.lilypondforum.de/index.php?topic=1186.msg6498#msg6498
HTH,
Pierre
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: bug triplet line collides with fingering

2014-06-07 Thread James
On 07/06/14 06:25, MarcM wrote:
> is that bug in the bug list now or does i need to post it somewhere else?
>
>
>
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/bug-triplet-line-collides-with-fingering-tp57290p163084.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
It has been forwarded to the bug email list.

What happens after that depends on those that look at the list to
determine if it is a bug or not and then they will create a tracker for it.

http://code.google.com/p/lilypond/issues/list

James

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


Re: bug triplet line collides with fingering

2014-06-07 Thread Federico Bruni
2014-06-07 7:25 GMT+02:00 MarcM :

> is that bug in the bug list now or does i need to post it somewhere else?
>

I think that your bug is still open, see this old issue:
https://code.google.com/p/lilypond/issues/detail?id=1642
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Notes engraved in weird order

2014-06-07 Thread mark damerell
Version 2.14

While trying to debug something else I found that Lilypond sometimes
engraves its notes in a strange order. If you print the same piece
repeatedly, the order changes. I changed my program to display
pitch-semitones.  With input

piece = \relative c' {
  c4 d e f g a b c,, d f g a
}

\score { \piece}
\score { \piece}


the relevant part of the output is

Drawing systems...
Notes: (-7 -10 -5 -3 5 4 7 2 0 11 9 -12)
Notes: (11 -5 -7 -12 9 0 4 7 2 -3 5 -10)
Layout output to `order.ps'...
Converting to `./order.pdf'...
success: [cut]

The typeset output is correct. Please is this supposed to happen? I
cannot find it documented. I hope to attach my program (sorry about
the length, I dont think I can make it shorter).
\version "2.14.2"

#(define n-list '() )

%{ pitch-to-color modified: print black and generate messages %}

#(define (pitch-to-color pitch)
  (let* (( nn (ly:pitch-semitones pitch))
	 ( m '(0 0 0 ) ))

(set! note-i (1+ note-i))
   (set! n-list (cons nn n-list ))
   (if (>= note-i count-notes)
(begin
 (set! note-i 0 )
 (ly:message "Notes: ~a \n" (reverse n-list ))
 (set! n-list '() ) ))

   m ))

#(define (color-notehead grob)
  (pitch-to-color
(ly:event-property (event-cause grob) 'pitch)))



%{Test piece. %}

\layout {
  \context {
\Voice
\override NoteHead #'color = #color-notehead
}}

piece = \relative c' {
  c4 d e f g a b c,, d f g a 
}


#(define count-notes 12)
#(define note-i 0)

\score { \piece}
\score { \piece}

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


Re: Special Characters in Lyrics

2014-06-07 Thread Br. Samuel Springuel

James, the asterisk does not appear on the list of symbols you linked to.

David, the quotes worked to get the asterisk into the text, thank you.

Trevor, the problem with putting in the spaces like that is that it 
pushes the "has" to the right so that it no longer lines up with its note.


Matthew, your solution worked perfectly.  Thank you.

✝
Br. Samuel, OSB
(R. Padraic Springuel)

PAX ☧ ΧΡΙΣΤΟΣ

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


Re: changing the appearance for single dots in fret boards

2014-06-07 Thread Marc Hohl

Am 07.06.2014 10:02, schrieb Pierre Perol-Schneider:

2014-06-06 9:59 GMT+02:00 Marc Hohl mailto:m...@hohlart.de>>:

I have some fret diagrams where one dot is placed and removed according
to the underlying rhythm, so it would be great to either change its
color or put it in parentheses.


Hallo Marc,
See discussion here :
http://www.lilypondforum.de/index.php?topic=1186.msg6498#msg6498


Hi Pierre,

thanks for the link! I wasn't aware of 'inverted' as an optional
forth argument to place-fret. It looks as if this feature is
not documented (it is used in 
input/regression/fret-diagrams-fingering.ly, though)


What about the feature request and a possible patch for using 
'parenthesized'? Is this still work-in-progress?


I'm cc'ing to Harm, I think he knows best about the patch status.

Thanks a lot!

Marc

HTH,
Pierre




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


Can header items be footnoted?

2014-06-07 Thread Patrick or Cynthia Karl

I tried to footnote a title as follows:

\version "2.18.0"

\header {
title = \markup { "My"
  \footnote "*" \italic "* Mine, mine, mine!"
  " Title"
}
}

A =   \relative b' { 
c, d e f g a b c 
}

\score {
\new Staff { \A }
\layout { }
}


The result was a title of "My * Title", but no footnote and no errors in the 
log file.

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


Re: changing the appearance for single dots in fret boards

2014-06-07 Thread Thomas Morley
2014-06-07 17:33 GMT+02:00 Marc Hohl :
> Am 07.06.2014 10:02, schrieb Pierre Perol-Schneider:
>>
>> 2014-06-06 9:59 GMT+02:00 Marc Hohl > >:
>>
>>
>> I have some fret diagrams where one dot is placed and removed
>> according
>> to the underlying rhythm, so it would be great to either change its
>> color or put it in parentheses.
>>
>>
>> Hallo Marc,
>> See discussion here :
>> http://www.lilypondforum.de/index.php?topic=1186.msg6498#msg6498
>
>
> Hi Pierre,
>
> thanks for the link! I wasn't aware of 'inverted' as an optional
> forth argument to place-fret. It looks as if this feature is
> not documented (it is used in input/regression/fret-diagrams-fingering.ly,
> though)
>
> What about the feature request and a possible patch for using
> 'parenthesized'? Is this still work-in-progress?
>
> I'm cc'ing to Harm, I think he knows best about the patch status.


Hi Marc,

yes I'm working on it.
http://code.google.com/p/lilypond/issues/detail?id=3930
is meant to prepare the final patch for
http://code.google.com/p/lilypond/issues/detail?id=2752
Though, it still needs some work before it does the job properly _and_
I'll have to add documentation about it.

Cheers,
  Harm

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


Lilypond as a library

2014-06-07 Thread Mauren Berti
Hello!

I am writing a software as my graduation project which captures audio and
generates a .ly file. I'd like to embed Lilypond as a library in my
software, so that it can generate the .pdf file directly, but was not able
to find a library-like compilation of Lilypond. Is there such a thing?

Thanks in advance!
Mauren.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user