Op Thu, 26 Feb 2015 09:00:32 -0500
Ralph Palmer schreef:
> Greetings -
>
> I'm running LilyPond 2.18.2 under Win7, with Frescobaldi 2.17.2.
>
> I'm trying to move a markup which has a \concat command, and I cannot
> figure out how to do it. As you can see from the snippet, I've tried a
> variet
Both suggestions worked for me. I tend to put things in a separate file as
definitions/variables etc. I just like it clean to see what I am doing
(especially in large scores).
Like
%%
\version "2.18.2"
pos = \markup \concat {
\large \bold { "Un poco Pi" \char ##x00F9 " lento, " }
2015-02-26 15:00 GMT+01:00 Ralph Palmer :
> Greetings -
>
> I'm running LilyPond 2.18.2 under Win7, with Frescobaldi 2.17.2.
>
> I'm trying to move a markup which has a \concat command, and I cannot figure
> out how to do it. As you can see from the snippet, I've tried a variety of
> solutions. Bes
F9 " lento, "
}
}
{
\tiny \note #"4" #UP " = 66"
}
}
|
e4 b |
b4 c |
d4 a |
a4 c |
b4 f |
f4 g |
}
\score {
\moveMarkupTest
}
% --
Cheers,
Klaus
--
View this
Hi Ralph,
Try:
\version "2.18.2"
\relative c'' {
\key c \major
\clef treble
\time 2/4
R1*1/2
%% try:
%\tweak extra-offset #'(5 . 5)
\mark\markup\concat {
\large \bold { "Un poco Pi" \char ##x00F9 " lento, " }
\tiny \note #"4" #UP " = 66"
} |
e4 b |
b4 c |
d4 a |