Forcing PDF to be one page?

2007-02-18 Thread Michael David Crawford

Hi Again,

I'm still trying to get a score to fit on a CD jewel case insert.

Joe Neeman's suggestion that I adjust max-stretch enabled me to make the 
two staves in a PianoStaff be closer together.  Unfortunately, tweaking 
all the different paper variables often causes quite nonsensical 
results, for example the PDF will have several pages, with only a single 
system placed at the bottom of the first page with a bunch of blank 
space above.


Is there some way I can force Lilypond to just make the PDF fit on a 
single page?  It's a short enough song that it should be able to do it.


Thanks for your help,

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


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


Re: Forcing PDF to be one page?

2007-02-18 Thread Trevor Bača

On 2/18/07, Michael David Crawford <[EMAIL PROTECTED]> wrote:

Hi Again,

I'm still trying to get a score to fit on a CD jewel case insert.

Joe Neeman's suggestion that I adjust max-stretch enabled me to make the
two staves in a PianoStaff be closer together.  Unfortunately, tweaking
all the different paper variables often causes quite nonsensical
results, for example the PDF will have several pages, with only a single
system placed at the bottom of the first page with a bunch of blank
space above.

Is there some way I can force Lilypond to just make the PDF fit on a
single page?  It's a short enough song that it should be able to do it.


Hm ... there is the following override ...

 \override NonMusicalPaperColumn #'line-break-permission = ##f

... which you'll need to do either in the Score's \with block or in a
\context block. If you make the override directly in music entry, use
\overrideProperty "Score.NonMusicalPaperColumn" etc, instead.

That *should* prevent lily from inserting any page breaks whatsoever.
Mail back if it does in fact do the trick.


--
Trevor Bača
[EMAIL PROTECTED]
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Forcing PDF to be one page?

2007-02-18 Thread Michael David Crawford

Trevor Bača wrote:

On 2/18/07, Michael David Crawford <[EMAIL PROTECTED]> wrote:

I'm still trying to get a score to fit on a CD jewel case insert.




Hm ... there is the following override ...

 \override NonMusicalPaperColumn #'line-break-permission = ##f

... which you'll need to do either in the Score's \with block or in a
\context block. If you make the override directly in music entry, use
\overrideProperty "Score.NonMusicalPaperColumn" etc, instead.

That *should* prevent lily from inserting any page breaks whatsoever.
Mail back if it does in fact do the trick.




I think you meant #'page-break-permission, which did the trick - setting 
#'line-break-permission forced the score to be just one line, which ran 
off the side of the page!


I also set system-count to #3 in my \paper block.

I need to tweak it a little more, then I'll throw the final version up 
on my website and post a link.


Thanks for your help.  Lilypond Rocks!

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


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


Lowering a \mark

2007-02-18 Thread Michael David Crawford

Still working on my CD case insert...

I have the text "acc." above my PianoStaff where the tempo is increased. 
 I also have a hidden tempo change for the MIDI file.


My staves are quite close together on my PDF, because I only have the 
height of a CD case to fit everything in.  The "acc." mark is just below 
the staff above where it is place, so it looks like it's associated with 
the upper staff and not the one below it.


But adjusting Y-offset for the RehearsalMark doesn't have any effect. 
I've tried many different values.


I'm using Lilypond 2.11.18.

Here is the source in question:

\once \override Score.MetronomeMark #'transparent = ##t
\tempo 4 = 55 {
\override RehearsalMark #'Y-offset = #-2
\mark "acc."
\times 2/3 { e8 c8 a8 }
}

Thanks for your help!

I've been printed CD case inserts on my inkjet printer, but once I am 
able to put the score on the inner pages, I expect to have a commercial 
printer print me a large number of them.  I've been waiting just for 
this before doing so.


Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


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


Re: Lowering a \mark

2007-02-18 Thread Vivian Barty-Taylor
Why not try \once \override Score.RehearsalMark #'extra-offset = (0 . -4 ) 

(adjust -4 until you get the mark where you want.)

Looking at your code again, you could also try replacing RehearsalMark with 
Score.RehearsalMark I've never used Y-offset to move things about, but perhaps 
it works too.

- Original Message 
From: Michael David Crawford <[EMAIL PROTECTED]>
To: lilypond-user@gnu.org
Sent: Sunday, 18 February, 2007 11:07:14 AM
Subject: Lowering a \mark

Still working on my CD case insert...

I have the text "acc." above my PianoStaff where the tempo is increased. 
  I also have a hidden tempo change for the MIDI file.

My staves are quite close together on my PDF, because I only have the 
height of a CD case to fit everything in.  The "acc." mark is just below 
the staff above where it is place, so it looks like it's associated with 
the upper staff and not the one below it.

But adjusting Y-offset for the RehearsalMark doesn't have any effect. 
I've tried many different values.

I'm using Lilypond 2.11.18.

Here is the source in question:

\once \override Score.MetronomeMark #'transparent = ##t
\tempo 4 = 55 {
\override RehearsalMark #'Y-offset = #-2
\mark "acc."
\times 2/3 { e8 c8 a8 }
}

Thanks for your help!

I've been printed CD case inserts on my inkjet printer, but once I am 
able to put the score on the inner pages, I expect to have a commercial 
printer print me a large number of them.  I've been waiting just for 
this before doing so.

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


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










___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk ___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lowering a \mark

2007-02-18 Thread Michael David Crawford

Vivian Barty-Taylor wrote:

Why not try \once \override Score.RehearsalMark #'extra-offset = (0 . -4 )

(adjust -4 until you get the mark where you want.)

Looking at your code again, you could also try replacing RehearsalMark 
with Score.RehearsalMark I've never used Y-offset to move things about, 
but perhaps it works too.


That did the trick.  Here is my code:

\once \override Score.MetronomeMark #'transparent = ##t
\tempo 4 = 55 {
\once \override Score.RehearsalMark #'extra-offset = #'(0 . -3)
\mark "acc."
\times 2/3 { e8 c8 a8 }
}

Y-offset is documented as a property of RehearsalMark but doesn't seem 
to really be so.


Thanks for your help!

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


- Original Message 
From: Michael David Crawford <[EMAIL PROTECTED]>
To: lilypond-user@gnu.org
Sent: Sunday, 18 February, 2007 11:07:14 AM
Subject: Lowering a \mark

Still working on my CD case insert...

I have the text "acc." above my PianoStaff where the tempo is increased.
  I also have a hidden tempo change for the MIDI file.

My staves are quite close together on my PDF, because I only have the
height of a CD case to fit everything in.  The "acc." mark is just below
the staff above where it is place, so it looks like it's associated with
the upper staff and not the one below it.

But adjusting Y-offset for the RehearsalMark doesn't have any effect.
I've tried many different values.

I'm using Lilypond 2.11.18.

Here is the source in question:

\once \override Score.MetronomeMark #'transparent = ##t
\tempo 4 = 55 {
\override RehearsalMark #'Y-offset = #-2
\mark "acc."
\times 2/3 { e8 c8 a8 }
}

Thanks for your help!

I've been printed CD case inserts on my inkjet printer, but once I am
able to put the score on the inner pages, I expect to have a commercial
printer print me a large number of them.  I've been waiting just for
this before doing so.

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/


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



Copy addresses and emails from any email account to Yahoo! Mail - quick, 
easy and free. Do it now... 




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


extra-offset instead of X/Y offset? (was Lowering a \mark)

2007-02-18 Thread Vivian Barty-Taylor
Dear David,

In your case, the reason it didn't work was that you hadn't identified the 
RehearsalMark correctly. If you look at the page for Mark-engraver it tells you:

Mark_engraver is part of contexts: Score

   

so unless you tell Lilypond to look in the Score context it isn't going to find 
any objects named RehearsalMark.

>>Y-offset is documented as a property of RehearsalMark but doesn't seem 
to really be so.

Y-offset is a user-settable property of Score.RehearsalMark - you could have 
followed my second suggestion. I think the reason that it is reccomended to use 
extra-offset is that extra-offset is by default set to #'(0 . 0) so that any 
changes you make will be relative to the X- and Y- offset values that work most 
of the time. If you decided that you wanted to adjust the default positions of 
an object for the whole score, then I would suggest using these properties. 
(Someone can correct me if I'm wrong!)

On another subject, I spent 20 minutes searching for why there is no padding 
property for DynamicText before finding that the padding is controlled by the 
DynamicLineSpanner . Could this be slightly more explicitly stated in the 
documentation, maybe on the pages of the objects controlled by it?

Cheers,

Vivian.

- Original Message 
From: Michael David Crawford <[EMAIL PROTECTED]>
To: Vivian Barty-Taylor <[EMAIL PROTECTED]>
Cc: lilypond-user@gnu.org
Sent: Sunday, 18 February, 2007 2:28:39 PM
Subject: Re: Lowering a \mark

Vivian Barty-Taylor wrote:
> Why not try \once \override Score.RehearsalMark #'extra-offset = (0 . -4 )
> 
> (adjust -4 until you get the mark where you want.)
> 
> Looking at your code again, you could also try replacing RehearsalMark 
> with Score.RehearsalMark I've never used Y-offset to move things about, 
> but perhaps it works too.

That did the trick.  Here is my code:

\once \override Score.MetronomeMark #'transparent = ##t
\tempo 4 = 55 {
\once \override Score.RehearsalMark #'extra-offset = #'(0 . -3)
\mark "acc."
\times 2/3 { e8 c8 a8 }
}

Y-offset is documented as a property of RehearsalMark but doesn't seem 
to really be so.

Thanks for your help!

Michael David Crawford
[EMAIL PROTECTED]
http://www.geometricvisions.com/

> - Original Message 
> From: Michael David Crawford <[EMAIL PROTECTED]>
> To: lilypond-user@gnu.org
> Sent: Sunday, 18 February, 2007 11:07:14 AM
> Subject: Lowering a \mark
> 
> Still working on my CD case insert...
> 
> I have the text "acc." above my PianoStaff where the tempo is increased.
>   I also have a hidden tempo change for the MIDI file.
> 
> My staves are quite close together on my PDF, because I only have the
> height of a CD case to fit everything in.  The "acc." mark is just below
> the staff above where it is place, so it looks like it's associated with
> the upper staff and not the one below it.
> 
> But adjusting Y-offset for the RehearsalMark doesn't have any effect.
> I've tried many different values.
> 
> I'm using Lilypond 2.11.18.
> 
> Here is the source in question:
> 
> \once \override Score.MetronomeMark #'transparent = ##t
> \tempo 4 = 55 {
> \override RehearsalMark #'Y-offset = #-2
> \mark "acc."
> \times 2/3 { e8 c8 a8 }
> }
> 
> Thanks for your help!
> 
> I've been printed CD case inserts on my inkjet printer, but once I am
> able to put the score on the inner pages, I expect to have a commercial
> printer print me a large number of them.  I've been waiting just for
> this before doing so.
> 
> Michael David Crawford
> [EMAIL PROTECTED]
> http://www.geometricvisions.com/
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> 
> Copy addresses and emails from any email account to Yahoo! Mail - quick, 
> easy and free. Do it now... 
> 


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










___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk ___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: point and click and with-url behavior

2007-02-18 Thread lala lala
Thanks for your answer !Well, I test it with 2.10.17 and 2.10.19-1. Both on 
windows. The "bug" is still here. I prefer use stable version. 
However I try it with 2.11.19 on windows too. Same unexpected behavior. I don't 
have link with \with-url when I use -dno-point-and-click.
Any reference to the correction of the bug ? or do we know where  the problem 
is ?
 
Thanks again !
 
Lasconic
 
 
 



> Date: Sat, 17 Feb 2007 10:30:15 -0800> From: [EMAIL PROTECTED]> To: [EMAIL 
> PROTECTED]> CC: lilypond-user@gnu.org> Subject: Re: > > lala lala wrote:> > 
> Hi ! I try to use markup text and \with-url. That works fine if I> > 
> authorized point-and-click. But if I run lilypond with the> > 
> -dno-point-and-click option I don't have link in my PDF. Is it a> > known 
> issue ?> > Yes, I believe it was fixed in 2.11.17. It should also work in 
> 2.10.17; > have you tried using the latest version of lilypond?> > Cheers,> - 
> Graham
_
Essayez Live.com, votre nouvelle page d'accueil ! Personnalisez-la en quelques 
clics pour retrouver tout ce qui vous intéresse au même endroit.
http://www.live.com/getstarted___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyPondTool 2.10.4 released

2007-02-18 Thread Stephen Corey
On Sat, 17 Feb 2007 23:42:05 +0100, Bertalan Fodor wrote:

> Hi,
> 
> LilyPondTool 2.10.4 has been released.
> Take it from http://sourceforge.net/projects/lily4jedit or wait for the 
> plugin repository to update.
> Important:
> - jEdit 4.3pre9 is needed now. It will work faster.
> - SideKick 0.7.2 is needed now.
> 
> For instructions upon manual installing (ie. not through plugin 
> repository), see http://lilypondtool.organum.hu/86.0.html
> 
> Changelog:
> 
> * insert into asset editing enhance and fix
> * created WhatBeat instead of what-beat.bsh, with fixes
> * fix document wizard templates containing \relative to support 
> other languages in relative
> * upgrade mode file generator
> * templates updated for instrumentName
> * Linux filenames are quoted as well
> 
> Bert

Downloaded and installed update today and it works great.
And it does seem to run faster.  Great job Bert and thanks for
keeping LilyPondTool so current.



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


Re: extra-offset instead of X/Y offset? (was Lowering a mark)

2007-02-18 Thread Mats Bengtsson
I recommend you to primarily use the padding and staff-padding 
properties to adjust the vertical position of objects. Then, LilyPond 
will automatically take the new position of the object
into account, for example when calculating the distance to the next 
stave. If you use extra-offset, the object will be moved
after all other typesetting decisions have been made, i.e. nothing else 
will move (which sometimes is an advantage, but often not).



Regarding the padding of dynamics, the DynamicLineSpanner
object is mentioned under "Commonly tweaked properties" in the section 
on Dynamics. However, only in connection to the staff-padding property, 
not the padding property.


Could you please propose more exactly how to modify the
documentation, based on your experience of where you searched
and didn't find it. See 
http://lilypond.org/web/devel/participating/documentation-adding


  /Mats

Quoting Vivian Barty-Taylor <[EMAIL PROTECTED]>:


Dear David,

In your case, the reason it didn't work was that you hadn't 
identified the RehearsalMark correctly. If you look at the page for 
Mark-engraver it tells you:


Mark_engraver is part of contexts: Score



so unless you tell Lilypond to look in the Score context it isn't 
going to find any objects named RehearsalMark.



Y-offset is documented as a property of RehearsalMark but doesn't seem

to really be so.

Y-offset is a user-settable property of Score.RehearsalMark - you 
could have followed my second suggestion. I think the reason that it 
is reccomended to use extra-offset is that extra-offset is by default 
set to #'(0 . 0) so that any changes you make will be relative to the 
X- and Y- offset values that work most of the time. If you decided 
that you wanted to adjust the default positions of an object for the 
whole score, then I would suggest using these properties. (Someone 
can correct me if I'm wrong!)


On another subject, I spent 20 minutes searching for why there is no 
padding property for DynamicText before finding that the padding is 
controlled by the DynamicLineSpanner . Could this be slightly more 
explicitly stated in the documentation, maybe on the pages of the 
objects controlled by it?


Cheers,

Vivian.






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


Fw: extra-offset instead of X/Y offset? (was Lowering a mark)

2007-02-18 Thread Vivian Barty-Taylor
Dear Mats and others,

I would suggest putting a note on the backend pages of the Program Reference. 
It seemed such a logical thing to just do \once \override DynamicText #'padding 
= #4 that I didn't even check if that was possible. (I then remembered that the 
last time I had tried this and it hadn't worked I had just used 
#'extra-offset.) Then I noticed it hadn't worked  and started trying to work 
out why. When I looked at:

http://lilypond.org/doc/v2.10/Documentation/user/lilypond-internals/DynamicText#DynamicText

I noticed there wasn't a padding property listed (which seemed
 odd). After a search on the lilypond-user archives I found that the padding is 
controlled by the DynamicLineSpanner for DynamicText, Hairpin and 
DynamicTextSpanner objects.

I would suggest putting a link on the DynamicText page to the 
DynamicLineSpanner page
http://lilypond.org/doc/v2.10/Documentation/user/lilypond-internals/DynamicLineSpanner#DynamicLineSpanner

with a note to say that padding for DynamicText objects is controlled by the 
padding of the DynamicLineSpanner.

On a seperate point, could you (or someone else) explain to me what the 
DynamicTextSpanner is? I've never used it, and can't find how to create one 
(unless this is the text option for Hairpins as documented.)

Cheers,
Vivian.

- Original
 Message 
From: Mats Bengtsson <[EMAIL PROTECTED]>
To: Vivian Barty-Taylor <[EMAIL PROTECTED]>
Cc: Michael David Crawford <[EMAIL PROTECTED]>; lilypond-user@gnu.org
Sent: Sunday, 18 February, 2007 8:10:37 PM
Subject: Re: extra-offset instead of X/Y offset? (was Lowering a mark)

I recommend you to primarily use the padding and staff-padding 
properties to adjust the vertical position of objects. Then, LilyPond 
will automatically take the new position of the object
into account, for example when calculating the distance to the next 
stave. If you use extra-offset, the object will be moved
after all other typesetting decisions have been made, i.e. nothing else 
will move (which sometimes is an advantage, but often not).


Regarding the padding of dynamics, the DynamicLineSpanner
object is mentioned under "Commonly tweaked properties" in the section 
on Dynamics.
 However, only in connection to the staff-padding property, 
not the padding property.

Could you please propose more exactly how to modify the
documentation, based on your experience of where you searched
and didn't find it. See 
http://lilypond.org/web/devel/participating/documentation-adding

   /Mats

Quoting Vivian Barty-Taylor <[EMAIL PROTECTED]>:

> Dear David,
>
> In your case, the reason it didn't work was that you hadn't 
> identified the RehearsalMark correctly. If you look at the page for 
> Mark-engraver it tells you:
>
> Mark_engraver is part of contexts: Score
>
>
>
> so unless you tell Lilypond to look in the Score context it isn't 
> going to find any objects named RehearsalMark.
>
>>> Y-offset is documented as a
 property of RehearsalMark but doesn't seem
> to really be so.
>
> Y-offset is a user-settable property of Score.RehearsalMark - you 
> could have followed my second suggestion. I think the reason that it 
> is reccomended to use extra-offset is that extra-offset is by default 
> set to #'(0 . 0) so that any changes you make will be relative to the 
> X- and Y- offset values that work most of the time. If you decided 
> that you wanted to adjust the default positions of an object for the 
> whole score, then I would suggest using these properties. (Someone 
> can correct me if I'm wrong!)
>
> On another subject, I spent 20 minutes searching for why there is no 
> padding property for DynamicText before finding that the padding is 
> controlled by the DynamicLineSpanner . Could this be slightly more 
> explicitly stated in the documentation, maybe on the pages of the 
> objects
 controlled by it?
>
> Cheers,
>
> Vivian.
>









 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes.








___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk ___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyPondTool 2.10.4 released

2007-02-18 Thread Bertalan Fodor



Downloaded and installed update today and it works great.
  

Sorry, but the doc is mixed up. I'll do another build this night.

Bert


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


A-Play - a New Shell for LilyPond

2007-02-18 Thread nordisc
Dear all,

Saturday the 17 February, the existence of our “secret” A-Play application was 
made public in a response e-mail from Valentin Villenave. We would like to 
inform you a little more detailed about our new project.

A-Play is a web-based shell using the LilyPond language. A-Play used to be a 
“normal” note-writing program, but we changed our mind, when we saw what 
LilyPond was able to do.

A-PLAY WILL BE PUBLISHED VERY SOON ON WWW.A-PLAY.DK 
==

The A-Play shell contains five menus with Copy Pads or "Pallets", which are 
code snippets to be pasted into the score editor. After the list of the main 
menus, you will find the expanded menu tree, allowing you to look deeper into 
the inner working of our menu based copy and paste application.

We have the following statement: A-Play is a freeware GNU documentation or 
application according to your liking. A-Play consists of a large range of ready 
made templates, chords, scales and other snippet to be copied and pasted into 
your favourite editor. A-Play only needs Lily Pond and a text editor to do its 
job, i.e. making it easier to program scores. A-Play runs on Windows 98 to XP 
and should be able to run on Linux without problems. We have not yet tested 
other platforms.

A little teaser, a D(b5) chord box: We have got them in all keys and flavoures:

d^\markup \fret-diagram #"6-x;5-x;4-o;3-1;2-3;1-2;"

See a template example at the end of this (very long) intro.

You are welcome to contact us at:

[EMAIL PROTECTED]
Phone +45-21 76 15 00

Best regards
NORDISC Music & Text

Henrik W. Gade

NORDISC, Hoertoftevej 9, DK.2700 Broenshoej, Copenhagen

www.nordisc-music.com
www.a-play.dk



1) Score
===
Templates
Score Settings
Advanced
Import/Export

2) Notes
===
Notes
Bar Lines
Text
Ties
Effects
Octave Signs
Repeats

3) Format
===
Tempo
Meter
Key
Clef
MIDI
Layout

4) Tools
===
Special Chords
Polyrhythms
Phrases
Advanced Rhythm
Dynamics
Teachers
Ancient

5) Help
===
Help
Music Theory
Basic Piano
About A-Play


EXTENDED TREES
===

1) Score
===
Templates
   Templates
   Blank Sheets
Score Settings
   Paper Format
   Page Format
   Brackets
   Instrument Names
   MIDI Volume
   Meter
   Clef
   Key
   Tempo
Advanced
   Polyphonic
   Tablature
   Drums
   Groups
   Transpose
Import/Export
   Import MIDI
   Import Noteworthy
   Import Finale
   Export PNG
   Primitive Export

2) Notes
===
Notes
   Standard Notes (preformated in 1/1, 1/2, 1/4 and 1/8 in all keys)
   Standard Rests
   Tab Notes
   Drum Notes
   Pitch
   Duration
   Dots
   Accidentals
   Triplet
   Chord Symbols
   Automatic Chords
Bar Lines
   Various Bars
   Fine
   Fade
   Text
   Markup Text
   \addlyrics
   Font for this Bar
   Dictionary
   Ties
   Standard Tie
   Legato Slur
   Phrase Slur
Effects
Trills
   Grace Note
   Slashed Grace Note
   Turn
   Reversed Turn
   Trill
   Mordent
   Mordent Up
   Mordent Down
   Prall Mordent
   Prall
   Prall Up
   Prall Down
Signs
   Accent
   Portato
   Staccato
   Staccatissimo
   Tenuto
   Fermat
Effects
Guitar Effects
   Hammer On
   Pull Off
   Slide
   Vibrato
   Bend
   Unison Bend
String Effects
   Pizzicato
  Tremolo
   Glissando
Vocal Effecs
   Shout
   Natural Harmonics
   Artificial Harmonics
   Octave Signs
   Octave 8va up
   Octave 8va down
   Octave 15va up
   Octave 15va down
   Octava Bracket
Repeats
General
   Traditional Signs
   Guitar Repeats
   MIDI Unfold
Guitar
   / (1/4)
  ./.' (bar)
Repeat Signs
   Dacapo
   Al segno
   Coda

3) Format
===
Format
Tempo
   Tempo =
Meter
   Time Signature
Scales
   Major & Minor
   Modal Scales
   Advanced Scales
   Transpose
Clef
   Clef
   MIDI
   Change Instrument
   Volume
   Controls
   Layout
Bar
   Beams
   Partial Bar
   Empty Bars
System
   System Width
   Vertical Spacing
   Global
Elements
   Move Elements

4) Tools
===
Chords
  Major Chord Boxes
  Minor Chord Boxes
  Movable Chord Boxes, Advanced Jazz
  Creating a Chord Box
  Combining Chord Boxes and Chord Symbols
  Chord Symbols Only
   Lead Sheets
Alternative Chords
   Stack of Quarters
   Stack of Fifths
   Cluster of 1/1 notes
   Cluster of 1/2 notes
Harmonize
   Add 2nd Voice
   Add 3rd voice
   Add 4th voice
   Parallellism (5th)
Turns
   1st Position
   2nd Position
   3rd Position
Polyrhythms
   Triplets
   Complex Polyrhythms
   Polyrhythmic Groups
Phrases
   Rhythm Phrases
   Bass Patterns
   Drum Patterns
Advanced Rhythms
   Floating Meters
   Transpose Rhythm
Dynamics
   Dynamic Signs
Teachers
  Notes for Kids
  Hide Elements
Ancient
  Gregorian Chant
  Mensual Chant

5) Help
===
Help
Music Theory
Basic Piano
About A-Play

 Simple System %

% PROLOGUE %
\header {
  title = "Simple"
  subtitle = ""
  subsubtitle = ""
  composer = ""
  dedication = ""
  opus = ""
  piece = ""
  arranger = ""
  poet = ""
  texttranslator = ""
  copyright = ""
}
#(set-default-paper-size "a4")
\paper {
  #(set-paper-size "a4")
}
\paper {
   hsize  = 21\cm
 

Re: A-Play - a New Shell for LilyPond

2007-02-18 Thread Han-Wen Nienhuys
[EMAIL PROTECTED] escreveu:

> We have the following statement: A-Play is a freeware GNU documentation or 
> application according to your liking. 

CAn you clarify?  Does this mean that the source for A-Play is 
available?


-- 

Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen

LilyPond Software Design
 -- Code for Music Notation
http://www.lilypond-design.com



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


Re: midi output dynamics, instrument tone

2007-02-18 Thread Mats Bengtsson

It's much easier to provide a relevant answer if you include a small
example of what you tried. Using
\set Staff.midiInstrument = ...
should certainly work. Just put that command before the first note of
the corresponding music.

For the dynamics, just insert a normal dynamics indication like
\f or \p or whatever in each part. If you don't want it included
in the printed output, you can add
\override DynamicText #'transparent = ##t
before you use the dynamics.

  /Mats

Quoting Ed Ardzinski <[EMAIL PROTECTED]>:


basics - windows xp machine, Lilypond v2.6.5

I've been experimenting with getting midi outputs for my songs to
help my band members (who really don't read music) get the idea.
I've been able to combine the vocal melody with a detailed
accompaniment part.  I would like to have a little differentiation
between the parts to make it easier to hear the parts.  Two ideas
come up - change the overall dynamics of the parts relative to each
other, or change the tone of one part.

I looked in the manual for v2.6 and saw the set Staff.midiInstrument
command.  I tried to put it in my score block and in the variable for
my melody part and all the Midi output still sounds like a grand
piano no matter what instruments I choose.  Maybe the problem is I'm
just listening to the midi file using Windows Media Player?

The dynamics thing is even more confusing to me - all I'd like to do
is tell the midi output to play the melody at full volume and the
accompaniment part at some fraction.  I don't care to have any
dynamics on my printed output.  Seems like a simple thing in concept,
but frankly I seem lost trying to figure any thing about dynamics.

I would appreciate any hints or tricks regarding midi dynamics and
the part voicings.  Thanks!
_
Fit more fun into your day with Flexicon: the crossword game that
feeds your brain. PLAY now for FREE.  
http://zone.msn.com/en/flexicon/default.htm?icid=flexicon_wltagline






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


Help please: Grace note slur to chord

2007-02-18 Thread Stephen Martin
I am having the following problem - any suggestions would be
appreciated

I cannot make a slur from the E grace note at the start of the
second bar go to the F#, it goes to the A in all the four
examples I tried below. As you can see, I have tried to think
laterally, but without success so far...

melody = {

\time 3/4 \key a \major \clef treble

\stemDown

8[ ]  [  ]  [ 
] \bar "|" \acciaccatura  e'' < a' fis''>4 8[
 ]  ([  )] \bar "|" \break 8[
]  [  ]  [  ]
\bar "|" \acciaccatura  e'' < fis'' a'>4 8[  ]
 ([  )] \bar "|" \break

% (s64 to force the phrases onto the same staff)

s64 << {a'8[  b']  cis''[  a']  a'[  a']} {e''8 e'' e'' e''
fis''a''}>> \bar "|" << {\grace  e''(  fis''4)  fis''8 g'' fis''
 e''} { a'4 a'8[ a']  a'([  a')]}>> \bar "|" \break s64 << {a'8[
 b' ] cis''[  a']  a'[  a']} {e''8 e'' e'' e'' fis''a''}>> \bar
"|" << {\acciaccatura  e''  fis''4  fis''8 g'' fis''  e''} { a'4
a'8[ a']  a'([  a')]}>> \bar "|" }

thanks, Steve



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