Page numbers with text

2020-02-06 Thread Marco Bagolin
Hello all, I don’t know how to personalize the page numbers of a score. I would like to see at the left bottom of every score page the number in the following format: n - Title of score Example: 1 - My Song 2 - My song ... Please help me. Thanks in advance. Regards Marco B.

Re: Page numbers with text

2020-02-06 Thread Aaron Hill
On 2020-02-06 10:02 pm, Marco Bagolin wrote: Hello all, I don’t know how to personalize the page numbers of a score. I would like to see at the left bottom of every score page the number in the following format: n - Title of score Example: 1 - My Song 2 - My song ... You will need to set o

Re: Page numbers with text

2020-02-06 Thread Aaron Hill
On 2020-02-06 10:11 pm, Aaron Hill wrote: On 2020-02-06 10:02 pm, Marco Bagolin wrote: Hello all, I don’t know how to personalize the page numbers of a score. I would like to see at the left bottom of every score page the number in the following format: n - Title of score Example: 1 - My So

Re: Page numbers with text

2020-02-07 Thread Marco Bagolin
My knowledge of lilypond is not good enough... I tried to understand the examples in the guide of lilypond but the chapter is not clear enough for me. I am in difficult... Please someone can help me? 🙏🏻 Thank you all Il giorno ven 7 feb 2020 alle 07:11 Aaron Hill ha scritto: > On 2020-02-06 10

Re: Page numbers with text

2020-02-07 Thread Kevin Barry
On Fri, Feb 07, 2020 at 09:06:19PM +0100, Marco Bagolin wrote: > My knowledge of lilypond is not good enough... > I tried to understand the examples in the guide of lilypond but the chapter > is not clear enough for me. > I am in difficult... Hi Marco, If you add the code below to your score, doe

Re: Page numbers with text

2020-02-07 Thread Noeck
Dear Marco, is this close to what you want? %% \version "2.19.84" \paper { print-first-page-number = ##t oddHeaderMarkup = \markup \null evenHeaderMarkup = \markup \null oddFooterMarkup = \markup \fill-line { \line { \on-the-fly \print-pa

Re: Page numbers with text

2020-02-07 Thread Noeck
… and if you want this footer on every page, you can have it shorter: oddFooterMarkup = \markup \fill-line { \line { \fromproperty #'page:page-number-string "–" \fromproperty #'header:title } } Best, Joram

Re: Page numbers with text

2020-02-09 Thread Marco Bagolin
Thank you all, all solutions are good, but I don't know why the copyright field on the first page does not appear. My code is the following: \version "2.18.2" \paper { print-first-page-number = ##t oddHeaderMarkup = ##f evenHeaderMarkup = ##f oddFooterMarkup = \markup {

Re: Page numbers with text

2020-02-11 Thread Kevin Barry
On Sun, Feb 09, 2020 at 09:01:48AM +0100, Marco Bagolin wrote: > Thank you all, > all solutions are good, but I don't know why the copyright field on the > first page does not appear. Because your code redefines footers, they no longer include the copyright field, so it has to be added back in. Do

Re: Page numbers with text

2020-02-11 Thread Marco Bagolin
Perfect, thank you. Il giorno mar 11 feb 2020 alle 21:53 Kevin Barry ha scritto: > On Sun, Feb 09, 2020 at 09:01:48AM +0100, Marco Bagolin wrote: > > Thank you all, > > all solutions are good, but I don't know why the copyright field on the > > first page does not appear. > > Because your code r