(this is the image...)<>___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
hello list, i'm trying to figure out the best way to include the metrical
grid analysis using dots like in the lerdahl and jackendoff book (see
image). i'm trying with \markup's, but how can i get all the dots
vertically aligned?
best,
lj
___
lilypo
On 11-10-27 09:21 PM, Colin Campbell wrote:
My cello teacher is quite insistent that I get accustomed to keeping
fingers in place while I'm going between strings, so I'm asking about
the best way to code that in LP. The only thing I've found is
repeatCommands, as in this:
%<-
Hi David,
2011/10/30 David Nalesnik
> Hi Harm,
>
> I added (if (ly:stencil? (ly:stem::print grob)) ... to the function (and
>> some construction-helpers, maybe deleted). Now it works with \change Staff,
>> too. "2.15.13" or higher is still needed.
>>
>
> All you need here is a call to ly:stem::p
Hi me,
sorry, should have read more carefully. Try:
\version "2.14.2"
music = \relative c'' {
c16 c c c c c c c c8 c16 c c8 c16 c |
r8 c c c c c c c | \break
}
\new Staff {
\overrideTimeSignatureSettings
#'(2 . 2) % timeSignatureFraction
#'(1 . 4) % baseM
On 10/30/11 11:41 AM, "me" wrote:
>
>
>I want the piece to be in 2/2 time, but with the 4/4 beamExceptions.
>What's the best way to do this?
Probably find the beamExceptions from 4/4 time in
scm/time-signature-settings.scm and copy them into your source file.
HTH,
Carl
Sven,
On Sun, Oct 30, 2011 at 8:18 PM, Sven Axelsson wrote:
> Is there a way to typeset a number of one line scores within a book in
> two columns?
>
> Ideally I'd like something like
>
> \book {
> \score {}
> \markup {
> \column {
> \score {}
> \score {}
> }
> \column {
>
Hi me,
2011/10/30 me
> (...)
>
>
> I want the piece to be in 2/2 time, but with the 4/4 beamExceptions.
> What's the best way to do this?
>
>
which version? With "2.14.2" try:
\version "2.14.2"
\new Voice \relative c'' {
\overrideTimeSignatureSettings
#'(2 . 2) % timeSign
Hi;
2011/10/30 J. Boor
> A few versions ago, I could do this:
>
> \once \override Staff.BarLine #'extra-offset = #'(0 . 2)
>\once \override Staff.BarLine #'bar-size = #1 \bar "|"
>
>
> with a result something like the divisioMinora that's in gregorian.ly,
> except that mine was a barlin
A few versions ago, I could do this:
\once \override Staff.BarLine #'extra-offset = #'(0 . 2)
\once \override Staff.BarLine #'bar-size = #1 \bar "|"
with a result something like the divisioMinora that's in gregorian.ly,
except that mine was a barline, and therefore line-breakable.
No
Hi Sven,
2011/10/30 Sven Axelsson
> Is there a way to typeset a number of one line scores within a book in
> two columns?
>
> Ideally I'd like something like
>
> \book {
> \score {}
> \markup {
>\column {
> \score {}
> \score {}
>}
>\column {
> \score {}
> \scor
Sven Axelsson-3 wrote:
>
> Is there a way to typeset a number of one line scores within a book in
> two columns?
>
> Ideally I'd like something like
>
> \book {
> \score {}
> \markup {
> \column {
> \score {}
> \score {}
> }
> \column {
> \score {}
> \sc
Ivan,
To turn off time signature all together,
do \set Score.timing = ##f
That gets ride of time signature both visually and actually,
if you want to insert barlines after that, inser them manually:
\bar
If you want to break a line with no barline at the end, do
\bar "" \break
Actually, I
Is there a way to typeset a number of one line scores within a book in
two columns?
Ideally I'd like something like
\book {
\score {}
\markup {
\column {
\score {}
\score {}
}
\column {
\score {}
\score {}
}
}
}
but that doesn't work, at least not wi
I get { { f' f' f' f' } { bflat' bflat' bflat' bflat' } { f' f' f' f' } }
and I would like to get { f' f' f' f' bflat' bflat' bflat' bflat' f'
f' f' f' }
This is the code:
\version "2.14.2"
\include "english.ly"
musacor= \chordmode {
f1:7bf:7f:7
}
Hi Harm,
I added (if (ly:stencil? (ly:stem::print grob)) ... to the function (and
> some construction-helpers, maybe deleted). Now it works with \change Staff,
> too. "2.15.13" or higher is still needed.
>
All you need here is a call to ly:stem::print first; there's no need to
integrate it into t
Hi all. I'm transcribing a piece written in 2/2 time, but I don't like the
automatic beaming that LilyPond uses when I set \time 2/2:
%%% begin snippet %%%
music = \relative c'' {
c16 c c c c c c c c8 c16 c c8 c16 c |
r8 c c c c c c c | \break
}
\new Staff {
% good
\time 4/4
\mu
Hi David,
2011/10/28 Thomas Morley
> Hi David,
>
> 2011/10/28 David Nalesnik
>
>> Hi Harm,
>>
>> (...)
>>
>> I tried various overrides to adjust the length of the final stem only,
>> and the solution I got to work is this:
>>
>> xy = \once\override Stem #'french-beaming = ##t
>>
>> \relative c
Since the bug probably resides in ghostscript version 9.04 vs. version
8.71, but not in Lilypond I filed a bug report to bug-ghostscript
(http://lists.gnu.org/archive/html/bug-ghostscript/).
Markus
___
lilypond-user mailing list
lilypond-user@gnu.org
Installed the new ghostscript version 9.04 besides the 8.71 on my
windows system and ... bingo!
The bug is not there using ghostscript 8.71 but it will show up using
the 9.04 version (which is the default for Ubuntu 11.10).
This brings up the question wether the interpretation of the 9.04
gh
Am 30.10.2011 03:30, schrieb Nick Payne:
On 30/10/11 08:22, MarkusPfaff wrote:
On my Kubuntu 11.10 system the .eps output generated from a .ly file
has ledger lines that loose their fill gradually from left to right.
You may see that in the attached example especially if you zoom in
heavily on
21 matches
Mail list logo