Re: \score

2006-01-22 Thread Paul Scott
Graham Percival wrote: On 22-Jan-06, at 10:10 PM, Paul Scott wrote: Mats Bengtsson wrote: Read at http://lilypond.org/doc/v2.7/Documentation/user/lilypond/Creating- titles.html#Creating-titles to find the answer. I finally read that section as well as the section on multiple movemen

Re: \score

2006-01-22 Thread Graham Percival
On 22-Jan-06, at 10:10 PM, Paul Scott wrote: Mats Bengtsson wrote: Read at http://lilypond.org/doc/v2.7/Documentation/user/lilypond/Creating- titles.html#Creating-titles to find the answer. I finally read that section as well as the section on multiple movements. From the examples I *m

Re: \score

2006-01-22 Thread Paul Scott
Mats Bengtsson wrote: Paul Scott wrote: Can more than header parts than "piece" be changed now? Read at http://lilypond.org/doc/v2.7/Documentation/user/lilypond/Creating-titles.html#Creating-titles to find the answer. I finally read that section as well as the section on multiple move

Parentheses, and big continuing slur

2006-01-22 Thread Nahum wengrov
Hello, I need help with two problems: 1. I have a big continuing slur all over the upper piano staff, across the page. 2. I tried to implement the example in "lstencil.hacking.ly" offered to me earlier on this mailing list. First instance, around a beam, works fine. Second instance, however, cau

Re: Force printing of Staff symbol

2006-01-22 Thread Gilles
Hello. > If I understand you correctly, you have for example one > stave with music for the full score and you want it > accompanied by a number of empty staves, right? > You did understand right :-) > Then, the easiest I can think of is so include an invisible > copy of the same music also in

Re:note-collision in Schumann

2006-01-22 Thread Martial
Oops ! I do not know that I doing. here is a good version : Just cut and paste the layout of the Piano centered Dynamics sample. joint debug file -- Martial http://cathemline.org \version "2.6.4" %\renameinput "script-collision.ly" ( don't work) \header { instrument = "Extrait de la B

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Hello Graham thx for answer. > > Really?! I don't think that we check for text collisions. You can't > get them to overlap, even using \markup { \translate x "foo" } ? > (see Overview of text markup commands) No i cant :( i tried this example today: _ \version

Re: markup free positioning?

2006-01-22 Thread Han-Wen Nienhuys
Please keep discussion on the list. try #(def-markup-command (with-dimensions layout props x y arg) (number-pair? number-pair? markup?) "Set the dimensions of @var{arg} to @var{x} and @var{y}." (let* ((m (interpret-markup layout props arg))) (ly:make-stencil (ly:stencil-expr m) x y)

help using my own scm modules

2006-01-22 Thread Arun Kumar
Hi, I have quite a bit customizations done with scheme code that are directly in the .ly files. I would like to move almost all of it to a .scm file that is a new module. I have tried doing this by putting the scm file in a separate directory and set GUILE_LOAD_PATH env variable. But the trou

Re: \once space between scores without lilypond-book?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 21:58 schrieb Mats Bengtsson: > One method is to add a title to the second score, > with a empty "piece" field that takes some space. a empty "piece" field make the same space as a empty \markup here on my machine. So its also to much space. > > Another option is to c

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 15:42 schrieben Sie: > Why don't you put them in the same \markup ? > >\markup { abc \translate #'(something) hij } > > and translate to make hij overlap with abc? thx. that works also like \combine and \translate. But how to do with \markup and \score to get the \m

Re: Vertically overlap lyrics context with staff context

2006-01-22 Thread Mats Bengtsson
Please always tell what LilyPond version you use. I will assume that you have version 2.6.x. The easiest is probably to specify a fixed extent for the staff context. Try something like: \new Staff \with {verticalExtent = #'(-4.0 . 4.0) } {...} You can find some related information in the sectio

Re: markup free positioning?

2006-01-22 Thread Graham Percival
On 22-Jan-06, at 9:33 AM, Felix Hammer wrote: \markup { \translate #'(24 . 5) "try to put very close to score" } Oh, wait. Remember that you can't \translate a whole string vertically. Either add a \hspace or "foo" or something to the beginning of this \markup, or use \override So

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 21:24 schrieben Sie: > #(def-markup-command (with-dimensions layout props x y arg) > (number-pair? number-pair? markup?) >    "Set the dimensions of @var{arg} to @var{x} and @var{y}." > >    (let* ((m (interpret-markup layout props arg))) >      (ly:make-stencil (ly:sten

Re: \once space between scores without lilypond-book?

2006-01-22 Thread Mats Bengtsson
One method is to add a title to the second score, with a empty "piece" field that takes some space. Another option is to convince LilyPond that the last score line of the first score or the first score line of the second score should occupy more space, which can be done in several ways. /Mats

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 16:33 schrieben Sie: > One obvious possibility is to attach the markup to some > note in the score and then use > \once \override TextScript #'extra-offset = (20 . 40 ) > or whatever, to determine how it should be displaced > relative to the default position. > >/Mat

Re: Force printing of Staff symbol

2006-01-22 Thread Mats Bengtsson
It would much clearer if you included a short example of what you tried. If I understand you correctly, you have for example one stave with music for the full score and you want it accompanied by a number of empty staves, right? Then, the easiest I can think of is so include an invisible copy of

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 16:33 schrieben Sie: > One obvious possibility is to attach the markup to some > note in the score and then use > \once \override TextScript #'extra-offset = (20 . 40 ) > or whatever, to determine how it should be displaced > relative to the default position. > >/Mat

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Hello Graham thx for answer. > > Really?! I don't think that we check for text collisions. You can't > get them to overlap, even using \markup { \translate x "foo" } ? > (see Overview of text markup commands) No i cant :( i tried this example today: _ \version

Re: markup free positioning?

2006-01-22 Thread Felix Hammer
Am Sonntag, 22. Januar 2006 15:42 schrieben Sie: > Why don't you put them in the same \markup ? > >\markup { abc \translate #'(something) hij } > > and translate to make hij overlap with abc? thx. that works also like \combine and \translate. But how to do with \markup and \score to get the \m

\once space between scores without lilypond-book?

2006-01-22 Thread Felix Hammer
Hi I also look for an chance to put some space between to \scores without using latex. until now i did it so: \end{lilypond} \vspace{5mm}\\ \begin[indent=0\cm,staffsize=18,linewidth=185\mm]{lilypond} But now i have tried: _ \version "2.6.4" \book { \scor

Re: markup free positioning?

2006-01-22 Thread Han-Wen Nienhuys
Felix Hammer wrote: Hello I want to know of there is an option to positioning a \markup text completly free on the paper? \book { \markup { "abc" } \score { << d4 e f g >> } \markup { "hij" } } For example. I want to place "hij" above

Re: markup free positioning?

2006-01-22 Thread Mats Bengtsson
One obvious possibility is to attach the markup to some note in the score and then use \once \override TextScript #'extra-offset = (20 . 40 ) or whatever, to determine how it should be displaced relative to the default position. /Mats Felix Hammer wrote: Hello I want to know of there is an

Re: Context - A recommendable Windows-Editor for Lilypond

2006-01-22 Thread Nicolas Sceaux
Uli Heller <[EMAIL PROTECTED]> writes: > [...] Emacs has many own commands and very less commands who are > windows-conform. All this specific commands you have to drill in your > head, there is no graphical menü (when I am right). [...] > There you read that you cannot delete a written characte

Vertically overlap lyrics context with staff context

2006-01-22 Thread David Wake
Is there any way to change the height of a lyrics context so that it overlaps with a staff context? I have a staff set up with two voices like this: Tempo indication Would like lyrics for upper voice to go here - - - - - Lyrics for lower voice The te