Re: Slashed grace notes without slur?

2004-02-09 Thread Mats Bengtsson
The section on grace notes in the reference manual gives a hint
to look at the definitions in
/usr/share/lilypond/2.x.xx/ly/grace-init.ly. In the definition of
startAcciaccaturaMusic you will find the relevant setting, namely
of stroke-style.
So, you could do something like:

\grace{\once \property Voice.Stem \override #'stroke-style = #"grace" c8 
} b2

   /Mats

Thomas Scharkowski wrote:
How?

Thank you,
Thomas
___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user
--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=
___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user


Page margins

2004-02-09 Thread Thomas Scharkowski
Hi, 

I would like to reduce the (top and/or bottom) margins of the page 
(a4).
"textheight" does not work. Could someone lead me to a solution?

Thank you
Thomas

2.1.11
cygwin


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


Re: Page margins

2004-02-09 Thread Mats Bengtsson


Thomas Scharkowski wrote:
Hi, 

I would like to reduce the (top and/or bottom) margins of the page 
(a4).
"textheight" does not work. Could someone lead me to a solution?
You are right! It used to work, but after a recent modification of
the lilypond script, both the top and bottom margins are hard coded
so setting textheight no longer has an effect (for the record, the
margin settings win over the textheight settings in the geometry
package works when the dimensions are overspecified).
I'll think about a solution to make it possible to change the settings
from within the .ly file. In the mean time, you could use one of the
following two workarounds:
Alternative 1:
- Run 'lilypond -k myfile.ly',
- edit the generated file lilypond.dir/myfile.latex and change the
  values in the assignments bottom=11mm and top=12mm
- Run:
  - cd lilypond.dir
  - latex myfile.latex
  - dvips -Ppdf -u+lilypond myfile
  - ps2pdf myfile.ps
(The last two steps are only needed if you want a PS and/or PDF version.)
Alternative 2:
- Write your own wrapper file using lilypond-book. I have attached
  a short example that you could have as a starting point, you have
  to replace the filename in the \lilypondfile{...} directive.
- Run:
  - lilypond-book myfile.lytex
  - latex myfile.latex
  - dvips -Ppdf -u+lilypond myfile
  - ps2pdf myfile.ps
   /Mats

% myfile.lytex
% 
% LaTeX wrapper file for use with lilypond-book
% 

\documentclass[a4paper]{article}

\usepackage{geometry}
\geometry{a4paper,width=190mm,height=27.5cm,verbose}

\input{titledefs}
\def\mustmakelilypondtitle{}

\begin{document}

\lilypondfile{myfile.ly}

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


Breitkopf & Haertel again / extra-X-extent

2004-02-09 Thread Matthias Kilian
Hi,

still working on that Bach/Busoni piece, I again tried to get the b&h
style collision handling.

The default behaviour of LilyPond can be seen in bh-default.png, generated
from bh-default.ly.

My first solution to get an output closer to the b&h edition was
bh-wide.png, generated from bh-wide.ly. As the name indicates, that
pair of stem-down notes results in a far too wide spacing, so I tried
to narrow it a little bit.

I don't want to tweak on both notes (the g and the bes), so I seeked the
documenatation once again and tried to fiddle with extra-X-extent. The
result is bh-strange.png (bh-strange.ly). Exactly what I want, with two
*big* flaws:

1. I really don't unterstand the semantics of that pair of numbers
   assigned to extra-X-extent. In fact, I found that strange version by
   trial and error.

2. The bes is moved left, but the g's dot also, thus covered by the g's
   head. Well, I tune the extra-X-extent of the NoteHead, so I
   shouldn't complain ;-)

What I need is: "move that g as well as its dot 1.7 staff sizes right,
and reduce the spacing right of it by up to 1.7 staff sizes." (If spacing
is thight, I don't want the g or its dot collide with the bes.

Has anyone an idea how to get it right?

Ciao,
Kili
\include "deutsch.ly"

\version "2.1.20"

bh = {}

treble = \notes \relative c' {
  \key d \minor
  << {8-^ s8} \\ {g8. f16} >>
<< 4-^ \\ {\bh g8. b16} >>
<< {s8. 16-|} \\ {a8. g16} >>
}

bass = \notes \relative c' {
  \key d \minor
  <<
{8 s 4 s8. 16-|} \\
{g'8. f16 \bh g8. b16 a8. g16}
  >>
}

\score {
  \context PianoStaff <<
\time 3/4
\context Staff = treble <<
  \context Voice = one {
\treble
  }
>>  
\context Staff = bass <<
  \clef bass
  \context Voice = one {
\bass
  }
>>  
  >>
  \paper {
indent = 0\mm
raggedright = ##t
  }
}
<>\include "deutsch.ly"

\version "2.1.20"

% Use Breitkopf & Härtel's arrangement for a dotted stem-down note running
% into a stem-up chord if the single note can't be placed vertically in line
% with the chord. See measures 13, beat 2 for an example.
bh = {
  \once \property Voice.NoteColumn \override #'force-hshift = #1.7
}

treble = \notes \relative c' {
  \key d \minor
  << {8-^ s8} \\ {g8. f16} >>
<< 4-^ \\ {\bh g8. b16} >>
<< {s8. 16-|} \\ {a8. g16} >>
}

bass = \notes \relative c' {
  \key d \minor
  <<
{8 s 4 s8. 16-|} \\
{g'8. f16 \bh g8. b16 a8. g16}
  >>
}

\score {
  \context PianoStaff <<
\time 3/4
\context Staff = treble <<
  \context Voice = one {
\treble
  }
>>  
\context Staff = bass <<
  \clef bass
  \context Voice = one {
\bass
  }
>>  
  >>
  \paper {
indent = 0\mm
raggedright = ##t
  }
}
<>\include "deutsch.ly"

\version "2.1.20"

% Use Breitkopf & Härtel's arrangement for a dotted stem-down note running
% into a stem-up chord if the single note can't be placed vertically in line
% with the chord. See measures 13, beat 2 for an example.
bh = {
  \once \property Voice.NoteColumn \override #'force-hshift = #1.7
  \once \property Voice.NoteHead \override #'extra-X-extent = #'(-1.7 . -1.7)
}

treble = \notes \relative c' {
  \key d \minor
  << {8-^ s8} \\ {g8. f16} >>
<< 4-^ \\ {\bh g8. b16} >>
<< {s8. 16-|} \\ {a8. g16} >>
}

bass = \notes \relative c' {
  \key d \minor
  <<
{8 s 4 s8. 16-|} \\
{g'8. f16 \bh g8. b16 a8. g16}
  >>
}

\score {
  \context PianoStaff <<
\time 3/4
\context Staff = treble <<
  \context Voice = one {
\treble
  }
>>  
\context Staff = bass <<
  \clef bass
  \context Voice = one {
\bass
  }
>>  
  >>
  \paper {
indent = 0\mm
raggedright = ##t
  }
}
<>___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user


Re: some padding properties broken in 2.1.16 and 2.1.17?

2004-02-09 Thread Paul Scott
Han-Wen Nienhuys wrote:

[EMAIL PROTECTED] writes:
 

Try setting staff-padding.
 

Thanks again Han-Wen for the workaround for the key signature problem 
(posted in Lilypond Bugs) but does anyone have a solution for the 
TextScript padding and the MultiMeasureRestNumber padding that I posted 
at the beginning of this thread?  Again this is what keeps me from using 
the latest versions.
   

see above.
 

I don't understand 'staff-padding'.  I can't find it in the manual.

Thanks,

Paul



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


$100 e-gold Exchange $150 Paypal

2004-02-09 Thread gobalshare.com
$100 e-gold Exchange $150 Paypal

You can convert your e-gold money into paypal money, is that simple. 

You send to me for example 100$ with an e-gold account and i
refund to your paypal account 150$ this is possible

There is a Limit of 36,000 $ for account estabilished with e-gold.

Don't wait, open one e-gold account at : 
http://www.e-gold.com
fund your account by credit cards, bank wire, bank draft, western union and
other,
Please e-mail me at this address for all the transactions :

[EMAIL PROTECTED]

Attention this business is legal in full.

Remember You send 100 $ by e-gold and receive in maximum 24 hours 150 $
in Your PayPal account

http://gobalshare.com/



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


Federal Provincial Subsidies

2004-02-09 Thread Info
  
CANADA BOOKS
26 CH. BELLEVUE
ST-ANNE-DES-LACS
QC, CANADA
J0R 1B0
(450) 224-9275
 

PRESS RELEASE
 
CANADIAN SUBSIDY DIRECTORY YEAR 2004 EDITION
 
Legal Deposit-National Library of Canada
ISBN 2-922870-05-7
 
The new revised edition of the Canadian Subsidy Directory 2004 is now
available. 
The new edition is the most complete and affordable reference for anyone
looking for financial support.
It is deemed to be the perfect tool for new or existing businesses,
individual ventures, foundations and associations.
 
This Publication contains  more than 2000 direct and indirect financial
subsidies, grants and loans offered by government departments and
agencies, foundations, associations and organisations.  In this new 2004
edition
all programs are well described.
 
The Canadian Subsidy Directory is the most comprehensive tool to start up
a business, improve existent activities, set up a business plan, or obtain
assistance from experts in fields such as: Industry, transport,
agriculture, communications, municipal infrastructure, education,
import-export, labor, construction and renovation, the service sector,
hi-tech industries, research and development, joint ventures, arts,
cinema, theatre, music and recording industry, the self employed,
contests, and new talents.
Assistance from and for foundations and associations, guidance to prepare
a business plan, market surveys, computers, and much more!
 
The Canadian Subsidy Directory is sold $ 69.95, to obtain a copy please
call:
Canada Books...(450) 224-9275
 
 
 
 
 



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


[no subject]

2004-02-09 Thread Joe Krame
I have LilyPond installed properly, version 1.6.6, but
when outputting a file I get this:

[EMAIL PROTECTED]:~/scores> lilypond test
GNU LilyPond 1.6.6
Now processing: `test.ly'
Parsing...
error: can't find `feta20.afm'
Fonts have not been installed properly.  Aborting


Thanks a lot for your help.

__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html


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


Re: My own wishlist...

2004-02-09 Thread Nick Busigin
On Fri, 6 Feb 2004 [EMAIL PROTECTED] wrote:

> As an interesting meta-question, I always wondered in how far Lilypond
> users were software people, or at least, technically oriented people.
> Everytime I show my score to a musician, he/she
> finds them beautiful - and, as a matter of principle, I never use anything
> but Lilypond's default - and asks for more information about the software
> I use. Then, after showing Lilypond and its input format,
> depending on whether he/she is computer literate, I am told
> that I spend too much time with computers (which is obviously
> true) or that I come from a different planet altogether (which is
> perhaps true as well :-) )

I don't know how many responses you received, but here's my guess:  Most
LilyPond users are probably programmers or have programmer friends or
partners.  My wife and I are an example.  She is a gifted musician who
has recently learned how to use LilyPond for typesetting her choral
arrangements, piano works and also for producing jazz lead-sheets.  The
way we work is as follows:  I set up a template file for her to work
with, complete with macros for a number of tweaks and she enters the
music and lyrics. If she runs into a problem, she calls me and I
determine if it's a bug or something that needs a tweak she isn't
familiar with.  The process works quite well and we are both very
impressed with the quality of the typeset music. 

  Nick

==--- www.SongBirdofSwing.com ---==
Nick Busigin [EMAIL PROTECTED]
Visit Our Indie Jazz CD Construction Project!

==--- www.SongBirdofSwing.com ---==





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


Hi from new user + two quick questions

2004-02-09 Thread Lyle Raymond
Hi, folks.  I'm a recent Finale 2000 convert who switched to LLP because it 
appeals to my aversion to using a mouse.

I have a couple of quick questions whose answers aren't readily apparent in 
the documentation.

1.  I write for a jazz quartet.  I need to print individual parts, with the 
instrument name boldly displayed in the upper left of the page.  I can only 
find instructions regarding extracted orchestra parts.  How can I simply add 
the bold text in the corner?

2.  This should be simple, but I can't find the answer anywhere:  How do I 
remove page numbers?



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


Re: Hi from new user + two quick questions

2004-02-09 Thread Paul Scott
Lyle Raymond wrote:

Hi, folks.  I'm a recent Finale 2000 convert who switched to LLP because it 
appeals to my aversion to using a mouse.

I have a couple of quick questions whose answers aren't readily apparent in 
the documentation.

1.  I write for a jazz quartet.  I need to print individual parts, with the 
instrument name boldly displayed in the upper left of the page.  I can only 
find instructions regarding extracted orchestra parts.  How can I simply add 
the bold text in the corner?
 

I haven't found an answer for this one yet.

2.  This should be simple, but I can't find the answer anywhere:  How do I 
remove page numbers?
 

pagenumber = "no"
in the \header will do this.
Paul Scott

P.S. you will get two copies of this because of the custom on this list 
of sending a copy to the OP who might not be subscribed to the list.





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


padding problems

2004-02-09 Thread Paul Scott
Either padding for TextScript and MultiMeasureRestNumber is still broken 
in 2.1.20 or I still don't have a workaround.

Thanks for any help or for an explanation of how staff-padding will help.

Paul Scott
\include "english.ly"

fliviii = \notes\relative c'' {
\property Voice.TextScript \set #'padding = #2.5
<< { s1^\markup\large\bold{ To Flute } } { R1 } >>
\repeat unfold 2 { R1*2 ef4 ef ef ef d8 d d4 ef2 } 
}

\score {
<<
\property Score.skipBars = ##t
\property Score.MultiMeasureRest \set #'expand-limit = #1
\property Score.MultiMeasureRestNumber \override #'padding = #0
\context Staff = flute { \notes R1 \fliviii } 
>>
}


markupspacing.pdf
Description: Adobe PDF document
___
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user