Dear community,
I would like to remove automatically all the "\mark \markup { \box { LETTER
} }" in the below quoted text. Can I do this with regex? Does someone know
how?
Thanks,
Stefan
\version "2.22.2"
violine = {
\clef "treble" | % 1
R1*8 | % 9
\mark \markup { \box { A } } R1*8
Providing you have juste one space as in the example,
in the part \mark \markup {
you can do a search and replace
\\mark.\\markup.{[^{]+{[^}]+}[^}]+}
with nothing
(I tested it in Geany on Ubuntu)
dot means one character
[^{]* means a non-empty sequence of characters without any { character
\ n
On Sat, May 25, 2024 at 9:16 AM Stefan Thomas
wrote:
> Dear community,
> I would like to remove automatically all the "\mark \markup { \box {
> LETTER } }" in the below quoted text. Can I do this with regex? Does
> someone know how?
> Thanks,
> Stefan
>
> \version "2.22.2"
>
> violine = {
>
Hello, I have use case where I will have mostly chordnames and Lyrics
with a few important short note runs sprinkled in here and there. Say
maybe 5 or 6 of them during the piece. For example as a reminder to the
gtuitar player o a note run.
I have tried a couple of different approaches (see b
Hi,
Could anybody help me to individually adjust the Vaticana staff-size,
please?
\version "2.25.12"
#(set-global-staff-size 15)
\new VaticanaScore {
<<
\new VaticanaVoice = "cantus" {\clef "vaticana-do3"
a
\[ g\melisma a g\melismaEnd \] f\ictus f
\finalis
Wols Lists, May 24, 2024 at 18:28:
> I do a lot of brass stuff. And as you've realised, it's \transpose not
> \transposition.
>
> I just think "\transpose for printed music, \transposition for midi".
> How accurate that is I don't know.
>
> The other trick I always use (given that a trombone plays
On Sat, 25 May 2024 at 18:53, mpk wrote:
>
> Hi,
> Could anybody help me to individually adjust the Vaticana staff-size,
> please?
Hello,
\score {
\new VaticanaScore {
% etc.
}
\layout {
#(layout-set-staff-size 18)
}
}
\score {
% normal score
}
Kind regards,
Xavier
Wol,
The bit about trombones in bass and Bb treble; I've only ever heard of Bb
treble clef trombone in British brass band music. What is the "American bass
part" in Bb? I've never heard of such a thing. I know that Richard Strauß wrote
tenor tuba parts in Bb bass clef.
-David
> From: "Wols
Great, thank you.
All about \score {} !
Martin
On Saturday 25 May 2024 18:35:44 BST you wrote:
> On Sat, 25 May 2024 at 18:53, mpk
wrote:
> > Hi,
> > Could anybody help me to individually adjust the Vaticana staff-
size,
> > please?
>
> Hello,
>
> \score {
> \new VaticanaScore {
> % etc.
Dear Silvain,
thank You, this worked perfectly for me!
Providing you have juste one space as in the example,
in the part \mark \markup {
you can do a search and replace
\\mark.\\markup.{[^{]+{[^}]+}[^}]+}
with nothing
(I tested it in Geany on Ubuntu)
dot means one character
[^{]* means a non-em
Hi Everyone,
Can anyone please advise why the following snippet outputs G9.13 instead of
just the G13 chord name?
LILYPOND_START
\version "2.24.3"
changes = \chordmode {
| g1:13 |
}
voice = {
\relative c'' {
| |
}
}
\score {
<<
\new ChordNames {
\cha
--
Knute Snortum
On Sat, May 25, 2024 at 2:18 PM Nikita Borisenko wrote:
> Hi Everyone,
>
> Can anyone please advise why the following snippet outputs G9.13 instead
> of just the G13 chord name?
>
I don't know "why", but this is how you would get just a 13 chord:
changes = \chordmode {
|
That's amazing - thank you, Knute!
Sincerely,
Nikita
On Sun, May 26, 2024 at 2:07 AM Knute Snortum wrote:
>
>
> --
> Knute Snortum
>
>
>
> On Sat, May 25, 2024 at 2:18 PM Nikita Borisenko wrote:
>
>> Hi Everyone,
>>
>> Can anyone please advise why the following snippet outputs G9.13 instead
>>
13 matches
Mail list logo