lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lilypond-user Digest, Vol 225, Issue 95


From: Carlos R Martinez
Subject: Re: lilypond-user Digest, Vol 225, Issue 95
Date: Thu, 2 Sep 2021 22:50:21 +0000

How would exactly the footer be built? Sorry I’m not that good with code. I struggled with the setting it up. 

 Carlos R Martinez16t7sw
Carlos R. Martinez 
270.850.5650
carlos@newsoundmusicstudio.com
www.essentialmusic.org 
www.newsoundmusicstudio.com 





On August 29, 2021 at 19:38 GMT, lilypond user request <lilypond-user-request@gnu.org> wrote:

Send lilypond-user mailing list submissions to
lilypond-user@gnu.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.gnu.org/mailman/listinfo/lilypond-user
or, via email, send a message with subject or body 'help' to
lilypond-user-request@gnu.org

You can reach the person managing the list at
lilypond-user-owner@gnu.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of lilypond-user digest..."


Today's Topics:

1. Re: Moving cresc/dim text (Thomas Morley)
2. Re: Moving cresc/dim text (Knute Snortum)
3. Re: Moving cresc/dim text (Thomas Morley)
4. Re: Expand staff (Carlos R Martinez)
5. Fotter and image (Carlos R Martinez)


----------------------------------------------------------------------

Message: 1
Date: Sun, 29 Aug 2021 19:23:54 +0200
From: Thomas Morley <thomasmorley65@gmail.com>
To: Knute Snortum <ksnortum@gmail.com>
Cc: lilypond-user <lilypond-user@gnu.org>
Subject: Re: Moving cresc/dim text
Message-ID:
<CABsfGyWny6f3sGTeXPf+4q+BChSw+OJMToE9KywxzFzs63jxeA@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Am So., 29. Aug. 2021 um 15:37 Uhr schrieb Knute Snortum <ksnortum@gmail.com>:
>
> I thought this used to work, to move the "cresc." to the left. It
> doesn't seem to work any more.
>
> %%%
> \version "2.23.3"
>
> \relative c' {
> c4 -\tweak X-offset -3 \cresc c c c |
> c4 c c c \! |
> }
> %%%
>
> Is this not the right way to move this text, and if not, what is?
>
> --
> Knute Snortum
>
Afaict, it never worked this way.
Do you mean something like:

\relative c' {
\once \override DynamicTextSpanner.bound-details.left.padding = -1.5
c4\cresc c c c |
c4 c c c \! |
}

Cheers,
Harm



------------------------------

Message: 2
Date: Sun, 29 Aug 2021 10:43:04 -0700
From: Knute Snortum <ksnortum@gmail.com>
To: Thomas Morley <thomasmorley65@gmail.com>
Cc: lilypond-user <lilypond-user@gnu.org>
Subject: Re: Moving cresc/dim text
Message-ID:
<CALmeJxQxqnTnArf2nmHOHLD0j+YWPGnF=C58Os0L7+mkyLTQYg@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

On Sun, Aug 29, 2021 at 10:24 AM Thomas Morley <thomasmorley65@gmail.com> wrote:
>
> Am So., 29. Aug. 2021 um 15:37 Uhr schrieb Knute Snortum <ksnortum@gmail.com>:
> >
> > I thought this used to work, to move the "cresc." to the left. It
> > doesn't seem to work any more.
> >
> > %%%
> > \version "2.23.3"
> >
> > \relative c' {
> > c4 -\tweak X-offset -3 \cresc c c c |
> > c4 c c c \! |
> > }
> > %%%
> >
> > Is this not the right way to move this text, and if not, what is?
> >
> > --
> > Knute Snortum
> >
> Afaict, it never worked this way.
> Do you mean something like:
>
> \relative c' {
> \once \override DynamicTextSpanner.bound-details.left.padding = -1.5
> c4\cresc c c c |
> c4 c c c \! |
> }

That works, thanks! I guess I was confused about the tweak.



------------------------------

Message: 3
Date: Sun, 29 Aug 2021 20:21:03 +0200
From: Thomas Morley <thomasmorley65@gmail.com>
To: Knute Snortum <ksnortum@gmail.com>
Cc: lilypond-user <lilypond-user@gnu.org>
Subject: Re: Moving cresc/dim text
Message-ID:
<CABsfGyU3V-zER1fQq0gaL4PMTcKL4-H9Pe20LsaUMgcCOyxHzw@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Am So., 29. Aug. 2021 um 19:43 Uhr schrieb Knute Snortum <ksnortum@gmail.com>:
>
> On Sun, Aug 29, 2021 at 10:24 AM Thomas Morley <thomasmorley65@gmail.com> wrote:
> >
> > Am So., 29. Aug. 2021 um 15:37 Uhr schrieb Knute Snortum <ksnortum@gmail.com>:
> > >
> > > I thought this used to work, to move the "cresc." to the left. It
> > > doesn't seem to work any more.
> > >
> > > %%%
> > > \version "2.23.3"
> > >
> > > \relative c' {
> > > c4 -\tweak X-offset -3 \cresc c c c |
> > > c4 c c c \! |
> > > }
> > > %%%
> > >
> > > Is this not the right way to move this text, and if not, what is?
> > >
> > > --
> > > Knute Snortum
> > >
> > Afaict, it never worked this way.
> > Do you mean something like:
> >
> > \relative c' {
> > \once \override DynamicTextSpanner.bound-details.left.padding = -1.5
> > c4\cresc c c c |
> > c4 c c c \! |
> > }
>
> That works, thanks! I guess I was confused about the tweak.

Well, \tweak would work as well:

\relative c' {
c4-\tweak bound-details.left.padding -1.5 \cresc c c c |
c4 c c c \! |
}

Cheers,
Harm



------------------------------

Message: 4
Date: Sun, 29 Aug 2021 19:27:58 +0000
From: Carlos R Martinez <carlos@newsoundmusicstudio.com>
To: mail@philholmes.net, lilypond-user@gnu.org
Subject: Re: Expand staff
Message-ID: <c-cbf6d-ksxlujfm-w257ni=37sumc@2.gethop.com>
Content-Type: text/plain; charset="utf-8"

Thank you!!! that worked!!!

cr

[Carlos R Martinez](https://spikenow.com/r/a/?ref=spike-organic-signature&_ts=16ljro) [16ljro]
Carlos R. Martinez
270.850.5650
carlos@newsoundmusicstudio.com
www.essentialmusic.org
www.newsoundmusicstudio.com

On August 29, 2021 at 14:33 GMT, Phil Holmes <mail@philholmes.net> wrote:

On 29/08/2021 14:44, carlos@newsoundmusicstudio.com wrote:

How do you use it on this. I am fairly new on Lilypond...

\version "2.18.2"

#(set-global-staff-size 19)

\paper {

#(set-paper-size "letter")

}

Global = {
\key c \major
\time 4/8
\tempo Allegro

}

VoiceI = \relative c' {

c4 d e g | %m1
f e d e | %m2
e1 | %m3

\bar "|."
}

VoiceII = \relative c {

c4 d e g | %m1
f e d e | %m2
e1 | %m3

}
---
Carlos R. Martínez
New Sound Music Studio
270 850 5650

On 2021-08-29 08:33, Phil Holmes wrote:

On 29/08/2021 13:32, Carlos R Martinez wrote:

Hi, is there a way to expand the staff when the music is only 3 measures. So instead of the 3 measure ending in the middle of the page I would like for it to continue to the end of the line...

[Carlos R Martinez](https://spikenow.com/r/a/?ref=spike-organic-signature&_ts=16l0jc) [16l0jc]
Carlos R. Martinez
270.850.5650
carlos@newsoundmusicstudio.com
www.essentialmusic.org
www.newsoundmusicstudio.com

See ragged-right in http://lilypond.org/doc/v2.23/Documentation/notation/horizontal-spacing-paper-variables
-- Phil Holmes
Please remember to reply-all to keep conversations on the mail list.

Further explained here: http://lilypond.org/doc/v2.23/Documentation/notation/line-width

-- Phil Holmes
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnu.org/archive/html/lilypond-user/attachments/20210829/253c323d/attachment.html>

------------------------------

Message: 5
Date: Sun, 29 Aug 2021 19:37:50 +0000
From: Carlos R Martinez <carlos@newsoundmusicstudio.com>
To: lilypond-user@gnu.org
Subject: Fotter and image
Message-ID: <c-cbf6d-ksxm77bb-he1yau=is0v3b@2.gethop.com>
Content-Type: text/plain; charset="utf-8"

Hello,

What is the best way to do this.

Modifying the footer so:

1. it goes flushed to the left and and
2. add an image that is to the right

footer = "Mutopia-2014/11/13-440"
copyright = \markup { \override #'(baseline-skip . 0 ) \right-column { \sans \bold \with-url #"http://www.MutopiaProject.org" { \abs-fontsize #9 "Mutopia " \concat { \abs-fontsize #12 \with-color #white \char ##x01C0 \abs-fontsize #9 "Project " } } } \override #'(baseline-skip . 0 ) \center-column { \abs-fontsize #11.9 \with-color #grey \bold { \char ##x01C0 \char ##x01C0 } } \override #'(baseline-skip . 0 ) \column { \abs-fontsize #8 \sans \concat { " Typeset using " \with-url #"http://www.lilypond.org" "LilyPond" " by " \maintainer " " \char ##x2014 " " \footer } \concat { \concat { \abs-fontsize #8 \sans{ " Placed in the " \with-url #"http://creativecommons.org/licenses/publicdomain" "public domain" " by the typesetter " \char ##x2014 " free to distribute, modify, and perform" } } \abs-fontsize #13 \with-color #white \char ##x01C0 } } }
tagline = ##f

Thank you so much!

[Carlos R Martinez](https://spikenow.com/r/a/?ref=spike-organic-signature&_ts=16lk83) [16lk83]
Carlos R. Martinez
270.850.5650
carlos@newsoundmusicstudio.com
www.essentialmusic.org
www.newsoundmusicstudio.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnu.org/archive/html/lilypond-user/attachments/20210829/5c3a2b63/attachment.html>

------------------------------

Subject: Digest Footer

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


------------------------------

End of lilypond-user Digest, Vol 225, Issue 95
**********************************************



reply via email to

[Prev in Thread] Current Thread [Next in Thread]