Hello Harm, hello Matt,
One more way that might be a bit more common and concise would be
\concat { ( \with-color #green Remember }
Cheers,
Valentin
signature.asc
Description: This is a digitally signed message part.
Why not use text marks,
http://lilypond.org/doc/v2.25/Documentation/notation/text-marks ? They
are intended exactly for textual indications that should appear at the
top of each system, i.e. above the lyrics in your case.
Because I wasn't aware of their existence :)
They work just nicely ...
Why not use text marks,
http://lilypond.org/doc/v2.25/Documentation/notation/text-marks ?
They are intended exactly for textual indications that should
appear at the top of each system, i.e. above the lyrics in your
case.
/Mats
On 2023-10-02
[moving instructional text above notes and outside of lyrics]
you could create a Dynamics context before the staff containing the markup.
Thanks Valentin, that works like a charm :)
Kind regards,
Michael
--
Michael Gerdau email: m...@qata.de
GPG-keys available on request or at public
Hello Michael,
you could create a Dynamics context before the staff containing the markup.
Cheers,
Valentin
Am Donnerstag, 28. September 2023, 19:54:22 CEST schrieb Michael Gerdau:
> Dear lilyponders,
>
> I would like to have directional text outside of lyrics. I've been
> trying to use \markup
Dear lilyponders,
I would like to have directional text outside of lyrics. I've been
trying to use \markup but so far I only managed to have the text between
notes and Lyrics.
See the following example:
- snip - snip - snip - snip -
\version "2.25.8"
music = {
<>^\markup "This Text shall b
Thanks, Jean.
I read that section over a few times and completely missed the implication
of \etc
Gratefully!
-mark.
On 21 Apr 2023 at 16:27:58, Jean Abou Samra wrote:
> Le jeudi 20 avril 2023 à 22:56 -0700, Mark Probert a écrit :
>
> Hi.
>
> I the score I’m currently working on littered wit
Le jeudi 20 avril 2023 à 22:56 -0700, Mark Probert a écrit :
> Hi.
>
> I the score I’m currently working on littered with expressions like
>
> fis2 r4 f4^\markup { \italic \smaller “schaftlich" } |
>
> Is there a way to write a substitution macro that means I could write
>
>
> fis2 r4 f4
Hi.
I the score I’m currently working on littered with expressions like
fis2 r4 f4^\markup { \italic \smaller “schaftlich" } |
Is there a way to write a substitution macro that means I could write
fis2 r4 f4^\itmark “schaftlich" |
instead?
Thanks again
-mark.
Aha, I see now what I did wrong .. I used \set instead of \override ...
> On 25. Mar 2021, at 21:20, Valentin Petzel wrote:
>
> Okay, can you check if this works on your installation?
>
> Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
>> That’s what I thought too at first.
Yes, it works. Thank you very much Valentin, it is just what I needed. Best
regards
El jue, 25 mar 2021 a las 21:20, Valentin Petzel ()
escribió:
> Okay, can you check if this works on your installation?
>
> Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
> > That’s what I thou
Okay, can you check if this works on your installation?
Am Donnerstag, 25. März 2021, 21:00:13 CET schrieb Robert Schmaus:
> That’s what I thought too at first. Doesn’t work in my Lilypond (2.20)
> installation though ...
> > On 25. Mar 2021, at 20:48, Valentin Petzel wrote:
> >
> > If you’re ta
That’s what I thought too at first. Doesn’t work in my Lilypond (2.20)
installation though ...
> On 25. Mar 2021, at 20:48, Valentin Petzel wrote:
>
> If you’re talking about regular markup in the Staff, you can simply put an
> \override TextScript.font-size = ...
> into the \with block of your
If you’re talking about regular markup in the Staff, you can simply put an
\override TextScript.font-size = ...
into the \with block of your Staff, or override it in the layout block for all
Staves.
Cheers, Valentin
signature.asc
Description: This is a digitally signed message part.
Hello,
Assuming you mean "all markups in a score" :
\layout {
\context {
\Score
\override RehearsalMark.font-size = #-2
}
}
Regards,
Frédéric
Le 25/03/2021 à 11:12, Pablo Cordal a écrit :
Hi everyone,
Is there any way to set the default size for all markups in a staff? I
have a
Ok, how about this: Place this instruction above your score:
\markup myStyle = \markup \fontsize #-2 \etc
And in the score, instead of writing
\markup{ ... }
use
\markup\myStyle{ ... }
Of course you can use another (shorter) Name instead of “ myStyle”.
And if you change the font size (or i
Hi Pablo,
I think, you can just place a
\set fontSize = #-1
in the layout block to get this for all markups.
Best,
Robert
> On 25. Mar 2021, at 08:12, Pablo Cordal wrote:
>
> Hi everyone,
>
> Is there any way to set the default size for all markups in a staff? I have a
> lot of markups
Hi everyone,
Is there any way to set the default size for all markups in a staff? I have
a lot of markups and I still have to write \fontsize = #-2 in all of
them... I found the default font family solution but I need to set the size
too.
Thank you very much. Best regards
David, a follow-up--
I came across a post of yours from some years back in response to a
sort-of-similar question,
in which you suggested a more direct/more succinct way to access
LilyPond's music-to-string functionality,
via "value->lilystring." (More succinct, that is, if don't count the
nec
Stephen Cummings writes:
> Quite comfortable with such cheek. Thank you.
>
> Still, I will try to package up a more formally named version of that
> little function. A translating map or loop will then be needed to
> extract note names and render them in more conventional form, but that
> won't
(out-notename (pitch->name pitch-datum))
(out-acc (pitch->alteration pitch-datum)))
#{\markup
\bold
\concat {$out-notename $out-acc }
#}
)
)
\notenamer {ees d b c g}
From: Aaron Hill
Subject:Re: Sch
Quite comfortable with such cheek. Thank you.
Still, I will try to package up a more formally named version of that
little function. A translating map or loop will then be needed to
extract note names and render them in more conventional form, but that
won't require inscrutable-for-me ly:xxx c
Stephen Cummings writes:
> Am I missing a basic LilyPond command/directive--something built-in
> that takes music as input and returns note names as text? Such a
> functionality would seem to be useful in all kinds of
> annotations/quotations. I know about \displayMusic but its output only
> go
On 2019-11-19 6:05 am, Stephen Cummings wrote:
Am I missing a basic LilyPond command/directive--something built-in
that takes music as input and returns note names as text?
There is the NoteNames context, but its functionality is wrapped up in
C++ code and is not easily customizable.
\v
Am I missing a basic LilyPond command/directive--something built-in that
takes music as input and returns note names as text? Such a
functionality would seem to be useful in all kinds of
annotations/quotations. I know about \displayMusic but its output only
goes to the console/output stream and
Oups, answered the wrong post, sorry…
JM
> Le 19 nov. 2019 à 09:43, Jacques Menu a écrit :
>
> Hello Steve,
>
> Maybe starting this way:
>
> \version "2.19.83"
>
> {
> % initial shared music
> c'1 e |
>
> % the two alternatives
> \override Staff.StaffSymbol.line-count = 0
> \stopS
Hello Steve,
Maybe starting this way:
\version "2.19.83"
{
% initial shared music
c'1 e |
% the two alternatives
\override Staff.StaffSymbol.line-count = 0
\stopStaff \startStaff
\hide Staff.BarLine
<<
\new Staff {
\hide Staff.Clef
\hide Staff.KeySignature
\h
Though I remain baffled by Scheme and its use in LilyPond, my hope is to
build one or more functions/procedures that would transpose input music
and for each chord display the transposed chord's note names, with
control over the way the names are represented (as in Cb or F# instead
of ces and f
On 2018-09-25 7:38 am, Abraham Lee wrote:
Hi, Ryan!
On Tue, Sep 25, 2018 at 8:34 AM Ryan Michael
wrote:
Hello
I am trying to offset my markup text above the staff by a horizontal
quantity. I can't seem to do so. I have tried
%
\version "2.18.2"
r8^\markup{\tweak
Ryan Michael writes:
> Hello
>
> I am trying to offset my markup text above the staff by a horizontal
> quantity. I can't seem to do so. I have tried
>
>
> %
> \version "2.18.2"
>
> r8^\markup{\tweak #'X-offset #1.5\huge"tempo I&q
Hi, Ryan!
On Tue, Sep 25, 2018 at 8:34 AM Ryan Michael
wrote:
> Hello
>
> I am trying to offset my markup text above the staff by a horizontal
> quantity. I can't seem to do so. I have tried
>
>
> %
> \version "2.18.2"
>
> r8^\marku
Hi Ryan,
> I am trying to offset my markup text above the staff by a horizontal
> quantity. I can't seem to do so. I have tried
Perhaps you’re looking for this?
%%%
\version "2.18.2"
{ r8-\tweak #'X-offset #1.5 ^\markup { \huge "tempo I" } r
Hello
I am trying to offset my markup text above the staff by a horizontal
quantity. I can't seem to do so. I have tried
%
\version "2.18.2"
r8^\markup{\tweak #'X-offset #1.5\huge"tempo I"} r8 r2.
%
but that results in a
Noeck writes:
> The idea that included files are indistinguishable from copy-and-paste,
> even goes to extreme levels. This works:
>
>
> --- included.ly
> title = "title"
> composer = "composer"
> }
> --
>
>
> --- main.ly
The idea that included files are indistinguishable from copy-and-paste,
even goes to extreme levels. This works:
--- included.ly
title = "title"
composer = "composer"
}
--
--- main.ly
\
On 02.08.2018 10:43, Peter wrote:
Thanks Simon yes sometimes I am not sure what environment the
interpreter is in, especially when it is expecting a music
Element or not. It's obvious in the simple case but can be confusing
in a more (unessessaryily?) complex file.
With variable definitions it
On 23.07.2018 16:22, Peter Gentry wrote:
It looks as though in this case the compiler is treating each
"addTextSpannerText.ly" in the parts as music rather than scheme.
\include acts in a way that is completely indistinguishable from just
pasting the content of the file instead of the include.
Hi David,
On Mon, Jul 23, 2018 at 6:49 AM, David Nalesnik
wrote:
> Hi Peter,
>
> You might find this helpful:
> https://github.com/davidnalesnik/lilypond-text-spanner-inner-texts
Another great addition you've added to my LilyPond library.
Did you know that GitHub's Markdown allows images? Eve
I have placed a copy of addTextSpannerText.ly to the C:/Program Files
(x86)/LilyPond/usr/share/lilypond/current/ly folder.
My score has five parts and in case a. each part/movement file includes the
statement - \include "addTextSpannerText.ly"
Result - Each part/movement compiles without error.
Bernard
> Sent: 23 July 2018 11:23
> To: Peter Gentry
> Cc: lilypond-user Mailinglist
> Subject: Re: layout of markup text
>
>
>
> Hi Peter,
>
>
>
> There's a large discussion of text centered in spanners in the archives of
> this list, and lots of code
David wrote You can. It's just a matter of describing "anywhere" in terms a
computer can understand.
Very true the only weak link is “in terms the less than adept user can
understand”
😊
___
lilypond-user mailing list
lilypond-user@gnu.org
h
"Peter Gentry" writes:
> I was amazed at how complex this simple common problem turns out.
>
>
>
> I have used the rather complex scheme code from the archives but there
> remain problems when spanning rest bars.
>
>
>
> You would think this is a common requirement. Why can't you place any t
I was amazed at how complex this simple common problem turns out.
I have used the rather complex scheme code from the archives but there
remain problems when spanning rest bars.
You would think this is a common requirement. Why can't you place any text
anywhere you fancy?
I'll maybe go
Thanks
“text centered in spanners” is the search text I was missing…
From: Andrew Bernard
Sent: 23 July 2018 11:23
To: Peter Gentry
Cc: lilypond-user Mailinglist
Subject: Re: layout of markup text
Hi Peter,
There's a large discussion of text centered in spanners in the archiv
Hi Peter,
There's a large discussion of text centered in spanners in the archives of
this list, and lots of code contributions by the learned colleagues herein.
Have a search. I have a Scheme solution but I think others have better than
mine.
Andrew
___
My problem is illustrated in
\version "2.19.81"
\relative c'' {
\clef "treble"
\time 2/4
\key c\major
r16 f16 ( [ a16 c16 ] bes16 ) [ f16 ( bes16 d16 ) ] | % 64
R1*2/4*2 \startTextSpan
^\markup { \small \italic "flt1 Solo ad lib"}
a8\stopTextSpan ^\markup {\large \italic
ints clearly after the delta symbol).
>
...
Is there a simple way of modifying chord names in the \chords field with
> markup text? More specifically, I'm looking for a way to print C7alt as a
> chord name (with alt printing clearly after the 7), and I'm having some
&
Same part of the doc as for your previous post.
A nice day!
JM
> Le 30 juin 2018 à 08:42, Reilly Farrell a écrit :
>
> Hi All,
>
> Is there a simple way of modifying chord names in the \chords field with
> markup text? More specifically, I'm looking for a way to pr
Hi All,
Is there a simple way of modifying chord names in the \chords field with
markup text? More specifically, I'm looking for a way to print C7alt as a
chord name (with alt printing clearly after the 7), and I'm having some
trouble figuring out the syntax.
\version "
On 2018-06-04 12:37, Simon Albrecht wrote:
On 04.06.2018 21:22, Reilly Farrell wrote:
I'm looking for a way to control the alignment of markup text.
Specifically, I'm looking to align "D.C. al Fine" to the very right
side of a measure, rather than having it float above a
On 04.06.2018 21:22, Reilly Farrell wrote:
I'm looking for a way to control the alignment of markup text.
Specifically, I'm looking to align "D.C. al Fine" to the very right
side of a measure, rather than having it float above a given note.
That’s simple, if you use a R
I'm looking for a way to control the alignment of markup text.
Specifically, I'm looking to align "D.C. al Fine" to the very right side of
a measure, rather than having it float above a given note. Here's a
snippet of the markup text in its current form:
c4 c4^\marku
Hello Simon,
Thanks for your advice. In its simple form, i.e. by adding: _\markup { \italic
{sempre 2} \musicglyph #"pedal.Ped" } , it works perfectly.
The other method, as in the ME you gave, it did not work.
But I got exactly what I needed. Thanks again.
Best regards,
Robert
On 22 Jan 2017,
On 22.01.2017 10:36, Robert Blackstone wrote:
I am presently re-engraving a number of almost forgotten piano pieces.
One of them has under the first bar of the LH staff the text: "/sempre
2 Ped/", Ped being the usual standard notation as generated by \sustainOn.
Although the LilyPond documenta
Dear all,
I am presently re-engraving a number of almost forgotten piano pieces.
One of them has under the first bar of the LH staff the text: "sempre 2 Ped",
Ped being the usual standard notation as generated by \sustainOn.
Although the LilyPond documentation tells me somewhere that "Pedal indi
On Wed, Aug 31, 2016 at 3:57 PM, Flaming Hakama by Elaine <
ela...@flaminghakama.com> wrote:
>
> I'm trying to order, from top to bottom, a markup text ("IABACA"), a
>> rehearsal mark, ("I"), and a tempo mark (quarter note = 200).
>>
>> I c
> I'm trying to order, from top to bottom, a markup text ("IABACA"), a
> rehearsal mark, ("I"), and a tempo mark (quarter note = 200).
>
> I can get them in order, but the markup text collides with the "poet" text
> fromt the header. Can anyone h
On Tue, Aug 30, 2016 at 3:48 PM, David Wright
wrote:
> On Tue 30 Aug 2016 at 14:35:33 (-0400), Ralph Palmer wrote:
> > I'm running ly 2.19.40 under Windows 7.
> >
> > I'm trying to order, from top to bottom, a markup text ("IABACA"), a
> > rehear
On Tue 30 Aug 2016 at 14:35:33 (-0400), Ralph Palmer wrote:
> I'm running ly 2.19.40 under Windows 7.
>
> I'm trying to order, from top to bottom, a markup text ("IABACA"), a
> rehearsal mark, ("I"), and a tempo mark (quarter note = 200).
>
> I can
Greetings -
I'm running ly 2.19.40 under Windows 7.
I'm trying to order, from top to bottom, a markup text ("IABACA"), a
rehearsal mark, ("I"), and a tempo mark (quarter note = 200).
I can get them in order, but the markup text collides with the "poet" t
t;
>
>
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193305.html
> Sent from the User mailing list archive at Nabble.com.
>
> ___
> lilypond-user mailing
Hello Jacques,
Eventually I found what I needed.
Great code btw!.
Best,
Dimitris
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193305.html
Sent from the User mailing list archive at Nabble.com
ssage in context:
> http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193244.html
> Sent from the User mailing list archive at Nabble.com.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
Yes!!
Thanks a lot!
What about the alignment? Is it configurable like the other default objects?
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193244.html
Sent from the User mailing list archive at Nabble.com
Does
https://github.com/openlilylib/snippets/tree/master/input-shorthands/easy-custom-dynamics
give you what you need?
HTH
Urs
>
>
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp19
Hello,
Instead of doing this every time:
piuF = \markup { \italic più \dynamic f }
I would prefer a function that makes this process faster.
e.g. a\cd "f" "espress."
Best,
Dimitris
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Dynamic-with-
David Kastrup writes:
> Caio Giovaneti de Barros writes:
>
>> Hello!
>>
>> I'm trying to build a function that creates a circled text of my
>> choice using \markup and a bit of Scheme. So far what I have is:
>>
>> circled = #(define-music-function (parser location txt) (string?)
>>
>> #{ \markup
Caio Giovaneti de Barros writes:
> Hello!
>
> I'm trying to build a function that creates a circled text of my
> choice using \markup and a bit of Scheme. So far what I have is:
>
> circled = #(define-music-function (parser location txt) (string?)
>
> #{ \markup { \circle #txt } #})
>
>
> \relati
__
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=178878&i=0>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the d
Hello!
I'm trying to build a function that creates a circled text of my choice
using \markup and a bit of Scheme. So far what I have is:
circled = #(define-music-function (parser location txt) (string?)
#{ \markup { \circle #txt } #})
\relative c' { c \circled #"1" }
But when I run it wi
message in context:
http://lilypond.1069038.n5.nabble.com/positioning-markup-text-outside-of-score-tp135023p135133.html
Sent from the User mailing list archive at Nabble.com.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org
t from happening?
you can always use \noPageBreak between the score and the markup!
Eluze
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/positioning-markup-text-outside-of-score-tp135023p135084.html
Sent from the User mailing list
in context:
http://lilypond.1069038.n5.nabble.com/positioning-markup-text-outside-of-score-tp135023p135081.html
Sent from the User mailing list archive at Nabble.com.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinf
"Words: Josephine Blow"
"Music: Adler Acock"
}
}
\score { }
\markup { etc.
It all works rather nicely except that the markup text is usually placed
rather close to the title of the following score, leaving too much space
between the prece
p {
> \column {
> "Words: Josephine Blow"
> "Music: Adler Acock"
> }
> }
> \score { .... }
> \markup { etc.
>
> It all works rather nicely except that the markup text is usually placed
> rather close
Jay Hamilton wrote:
not exactly sure what that means in this case
There is an example at
http://lsr.dsi.unimi.it/LSR/Item?id=258
This sidesteps the question of horizontal space by setting ragged-right.
Do you already have enough horizontal space for the text?
Or do you expect Lilypond to ma
me a result that I can understand/use.
>
> Should I try using some sort of 'padding' verbage or what?
>
> And I need to have markup {"Text"} be the same size as
> \addlyric. But I don't understand how to figure out what the lyric size is
> I do have
>
cript-priority = # %(some number here)
but it's not giving me a result that I can understand/use.
Should I try using some sort of 'padding' verbage or what?
And I need to have markup {"Text"} be the same size as
\addlyric. But I don't understand how to figure out what t
some sort of 'padding' verbage or what?
And I need to have markup {"Text"} be the same size as
\addlyric. But I don't understand how to figure out what the lyric size is
I do have
#(set-global-staff-size 25)
Where do I look to figure this out
Thanks
Jay
--
Jay Hamilton
2008/7/16 James E. Bailey <[EMAIL PROTECTED]>:
> What you need here is a printer's mark, not an apostrophe, which is what the
> ' character on your keyboard is. On a macintosh, to get that character, you
> use shift+option=] and it creates the character ' as opposed to the ' which
> is just a hash
Am 16.07.2008 um 16:45 schrieb Francisco Vila:
Thank you, James and Roman, the concat solves the undesired space
problem.
Now, if several words are in italics, I'm sure there is a better form
than to repeat \markup{\italic...} for each syllable. Do you know of
any?
--
Francisco Vila. Badajoz
Thank you, James and Roman, the concat solves the undesired space problem.
Now, if several words are in italics, I'm sure there is a better form
than to repeat \markup{\italic...} for each syllable. Do you know of
any?
--
Francisco Vila. Badajoz (Spain)
http://www.paconet.org
__
Francisco Vila wrote:
Hello all,
Attached is what I want and what I get; in a single note we have:
- last letter of a previous word
- an italic apostrophe
- first letter of the next word, also italic
Not only I cannot join all of this onto a single note, I also obtain
errors for the next syll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Am Mittwoch, 16. Juli 2008 schrieb Francisco Vila:
> 2008/7/16 Francisco Vila <[EMAIL PROTECTED]>:
> > The complete code of the attempt is:
> >
> > \version "2.11.52"
> > { \time 3/8 \autoBeamOff a'8 a'16 a' a' a' }
> > \addlyrics { bien ha -- y \marku
Am 16.07.2008 um 13:35 schrieb Francisco Vila:
Hello all,
Attached is what I want and what I get; in a single note we have:
- last letter of a previous word
- an italic apostrophe
- first letter of the next word, also italic
Not only I cannot join all of this onto a single note, I also obtai
2008/7/16 Francisco Vila <[EMAIL PROTECTED]>:
> The complete code of the attempt is:
>
> \version "2.11.52"
> { \time 3/8 \autoBeamOff a'8 a'16 a' a' a' }
> \addlyrics { bien ha -- y \markup{ \italic "'a" } -- que -- ya }
And the solution is to put the 'y' inside of the markup,
\addlyrics { bien
Hello all,
Attached is what I want and what I get; in a single note we have:
- last letter of a previous word
- an italic apostrophe
- first letter of the next word, also italic
Not only I cannot join all of this onto a single note, I also obtain
errors for the next syllable (unfinished hyphen).
At the risk of trying your patience, I pose the next dilemma, with
apologies for my lack of understanding of the nuances of the /markup
command.
1. Suppose there is a long sentence ( foo foo etc. ) which extends
past the right margin. How can it be wrapped to the line width (or a
specifie
Mats Bengtsson schrieb:
There's no need for trial and error. If you want the text exactly
centered with the music, then you can use
\markup {
{
\general-align #Y #CENTER foo
\general-align #Y #CENTER \snip
}
}
which sets the alignment point of both the text and the \snip
on the vertica
Quoting Maximilian Albert <[EMAIL PROTECTED]>:
> In the example, I have also changed the vertical alignment, to
> make it look better. You may want to try \general-align #Y #DOWN
> instead.
... or even some value in between like \general-align #Y #-0.2 so as
to make the text appear at about the
On Oct 1, 2007, at 11:36 AM, Maximilian Albert wrote:
Mats Bengtsson schrieb:
snip = \markup {
\score
{ \new Staff \with {
\remove Time_signature_engraver
firstClef = ##f
}
{ << c''4\\ a' >> }
\layout { indent = #0 ragged-right = ##t }
}
}
\mark
Mats Bengtsson schrieb:
snip = \markup {
\score
{ \new Staff \with {
\remove Time_signature_engraver
firstClef = ##f
}
{ << c''4\\ a' >> }
\layout { indent = #0 ragged-right = ##t }
}
}
\markup {
{
foo
\general-align #Y #CENTER \snip
}
}
Quoting Graham Percival <[EMAIL PROTECTED]>:
Sorry, I read it too quickly. The results are a little bit better if
you use \line instead of \fill-line, but I agree that there's still
too much space between the elements.
You don't need the explicit \line{...}. The horizontal space is due
to th
On Sep 30, 2007, at 2:49 PM, Graham Percival wrote:
Sorry, I read it too quickly. The results are a little bit better
if you use \line instead of \fill-line, but I agree that there's
still too much space between the elements.
I really recommend using minimal examples, with correct
inden
Sorry, I read it too quickly. The results are a little bit better if
you use \line instead of \fill-line, but I agree that there's still too
much space between the elements.
I really recommend using minimal examples, with correct indentation,
though. This makes it much easier to see what's h
Graham-
No, the code below produces the score snippet within the markup
command. However, I am trying to obtain " some (markup)text " + " the
snippet " all on the same line.
In the attached code, the snippet appears to be in its own space.
Regards,
Stan
On Sep
Are you looking for the \markup{ \score{ }} command? "Nested scores",
in the "text" section.
Cheers,
- Graham
Stan Sanderson wrote:
Greetings to all-
This seems like a variant of the problem recently addressed by Rick
Hansen. However, it seems as if there should be a simple answer which
h
Greetings to all-
This seems like a variant of the problem recently addressed by Rick
Hansen. However, it seems as if there should be a simple answer which
has thus far eluded me. I have looked at the LSR and mail archives,
but haven't found an answer.
The problem: I am attempting to dupl
Frédéric Chiasson wrote:
Hi,
Using : LilyPond 2.11.9 on Mac OS X.4.8
I would like to put a markup text as : (left arrow) (quarter note) =
(dotted quarter note) (right arrow), for making Carter-like "rythmic
modulations".
I don't know how to put arrows. Putting the arrow fr
Hi,
Using : LilyPond 2.11.9 on Mac OS X.4.8
I would like to put a markup text as : (left arrow) (quarter note) = (dotted
quarter note) (right arrow), for making Carter-like "rythmic modulations".
I don't know how to put arrows. Putting the arrow from the Mac text
character set
1 - 100 of 132 matches
Mail list logo