Re: insert an arbitrary SVG ?

2013-09-22 Thread Pierre Perol-Schneider
2013/9/22 Bric b...@flight.us Is there a way to insert an arbitrary SVG shape? It has to be eps. See : http://www.lilypond.org/doc/v2.16/Documentation/notation/graphic ___ lilypond-user mailing list lilypond-user@gnu.org

Break within measure in polyphony

2013-09-22 Thread Nick Payne
I'm attempting to reproduce the engraving of a baroque prelude which is without barlines (although it appears to be in 12/8, as the bass voice has some dotted whole notes), and at one point the original engraving has put a line break two thirds of the way through a dotted half note in the bass

Re: insert an arbitrary SVG ?

2013-09-22 Thread Richard Shann
On Sun, 2013-09-22 at 08:05 +0200, Pierre Perol-Schneider wrote: 2013/9/22 Bric b...@flight.us Is there a way to insert an arbitrary SVG shape? It has to be eps. You may like to use this to convert: inkscape --export-text-to-path --export-bbox-page --without-gui

Re: Break within measure in polyphony

2013-09-22 Thread bobr...@centrum.is
- Original Message - From: Nick Payne nick.pa...@internode.on.net To: lilypond-user@gnu.org Sent: Sunday, September 22, 2013 7:50:55 AM Subject: Break within measure in polyphony I'm attempting to reproduce the engraving of a baroque prelude which is without barlines (although it

Re: Break within measure in polyphony

2013-09-22 Thread David Kastrup
Nick Payne nick.pa...@internode.on.net writes: I'm attempting to reproduce the engraving of a baroque prelude which is without barlines (although it appears to be in 12/8, as the bass voice has some dotted whole notes), and at one point the original engraving has put a line break two thirds

Re: Acciaccaturas and slashed stems

2013-09-22 Thread David Kastrup
Thomas Morley thomasmorle...@gmail.com writes: I coded some thoughts about automatically beaming grace notes. Comments in code. It's not an engraver, as supposed by David, (this should be done in C++ like the others), There is no real reason that this needs to be done in C++. The main

Re: Parenthesize

2013-09-22 Thread Eluze
Jim Long wrote anymusic = \new Staff \relative c' { c4 \parenthesize { d e f } c4 d e f } for normal input you can use { c \tweak #'Y-offset -5 \tweak #'text ( \breathe gis16([ a \tweak #'Y-offset -5 \tweak #'text ) \breathe ]) } unfortunately you'll have to calculate the

Re: Break within measure in polyphony

2013-09-22 Thread Nick Payne
On 22/09/13 18:45, David Kastrup wrote: { \new Voice \with { \voiceOne } { \repeat unfold 10 { c''4 } \bar \break \repeat unfold 10 { c''4 } } \new Voice \with { \remove Forbid_line_break_engraver \voiceTwo } { \repeat unfold 5 { c1 } } }

Re: Parenthesize

2013-09-22 Thread Thomas Morley
2013/9/22 Eluze elu...@gmail.com: Jim Long wrote anymusic = \new Staff \relative c' { c4 \parenthesize { d e f } c4 d e f } for normal input you can use { c \tweak #'Y-offset -5 \tweak #'text ( \breathe gis16([ a \tweak #'Y-offset -5 \tweak #'text ) \breathe ]) }

align in \markup

2013-09-22 Thread MING TSANG
Hi lilyponders, How to align the yMt with samplepath?  Any solution is appreciated. Thanks, Ming. \version 2.17.26 samplePath = #'((moveto 0 1) (lineto -1 3) (lineto -1 3) (lineto 1 1) (curveto 3 3 3 2 1 4) (closepath)) \markup { yMt \path #0.15 #samplePath }attachment:

Re: align in \markup

2013-09-22 Thread Eluze
MING TSANG wrote Hi lilyponders, How to align the yMt with samplepath?  Any solution is appreciated. \markup { yMt \path #0.15 #samplePath try \markup \general-align #Y #CENTER { ... } Eluze -- View this message in context:

Re: align in \markup

2013-09-22 Thread David Kastrup
MING TSANG tsan...@rogers.com writes: Hi lilyponders, How to align the yMt with samplepath?  Any solution is appreciated. Thanks, Ming. \version 2.17.26 samplePath = #'((moveto 0 1) (lineto -1 3) (lineto -1 3) (lineto 1 1) (curveto 3 3 3 2 1 4) (closepath)) \markup { yMt \path

Re: Acciaccaturas and slashed stems

2013-09-22 Thread Gilberto Agostinho
Hi Thomas, Thank you so much for this code, indeed it works very well as you say! It is only a pity that one has to keep changing it ##t and ##f when dealing with multiple grace notes vs. a single grace note (as David rightly pointed out before, LilyPond would not understand { c'8[] } ). But this

Re: Where/when does LilyPond handle #(ly:set-option) commands?

2013-09-22 Thread Urs Liska
No idea anybody? Am 20.09.2013 11:08, schrieb Urs Liska: Hi, I would like LilyPond to insert a style file depending on the presence of a command line switch. Inserting the following into init.ly #(if (ly:get-option 'draft-mode) (ly:parser-include-string parser \\include

Re: align in \markup

2013-09-22 Thread MING TSANG
Hi,Eluze David:  I try Eluze' suggestion and the result is much better. Please refer to .png file. \markup \general-align #Y #CENTER { yMt \path #0.15 #samplePath } Thank you, Ming. Hi lilyponders, How to align the yMt with samplepath?  Any solution is appreciated. \markup { yMt \path