Dear Lilypond Users,
In a score, I need to have a three pages view, therefore alter the numbering of
the third page to obtain the following page numbers order :… 10, 11, 11b, 12 …
Page 11b is the last page of a 3 pages long \score, so I can’t isolate it into
an independent \bookpart (or I could,
On 11/3/23 9:31 AM, Jean Abou Samra wrote:
Le vendredi 03 novembre 2023 à 09:13 -0700, Paul Scott a écrit :
Thank you! I thought it was a type problem. The solution would have
been clear in C or Fortran or Pascal or Forth that I have programmed in.
Except that it doesn't work /blush/...
On 11/3/23 2:43 AM, Jean Abou Samra wrote:
Le 3 nov. 2023 à 09:35, Paul Scott a écrit :
\markup\fill-line{ \firstPage }
59 is a number, but you're trying to use it as a string, so try
\markup \fill-line { #(markup->string firstPage) }
I tried:
\version "2.25.9"
firstPage = #59
\book{
Le vendredi 03 novembre 2023 à 09:13 -0700, Paul Scott a écrit :
> Thank you! I thought it was a type problem. The solution would have
> been clear in C or Fortran or Pascal or Forth that I have programmed in.
Except that it doesn't work *blush*...
I wanted to write "number->string" and some
Thank you! I thought it was a type problem. The solution would have
been clear in C or Fortran or Pascal or Forth that I have programmed in.
Paul
On 11/3/23 2:43 AM, Jean Abou Samra wrote:
Le 3 nov. 2023 à 09:35, Paul Scott a écrit :
\markup\fill-line{ \firstPage }
59 is a number, but
> Le 3 nov. 2023 à 09:35, Paul Scott a écrit :
>
> \markup\fill-line{ \firstPage }
59 is a number, but you're trying to use it as a string, so try
\markup \fill-line { #(markup->string firstPage) }
On 11/3/23 12:42 AM, Jean Abou Samra wrote:
Le 3 nov. 2023 à 07:56, Paul Scott a écrit :
I know how to use fromproperty to put the page number in a header or
footer. Can I get the page number in a variable so I can use it in
another text string?
It depends on what kind of variable you
> On 3 Nov 2023, at 08:43, Jean Abou Samra wrote:
>
>>> Le 3 nov. 2023 à 07:56, Paul Scott a écrit :
>>>
>> I know how to use fromproperty to put the page number in a header or footer.
>> Can I get the page number in a variable so I can use it in another
> Le 3 nov. 2023 à 07:56, Paul Scott a écrit :
> I know how to use fromproperty to put the page number in a header or footer.
> Can I get the page number in a variable so I can use it in another text
> string?
It depends on what kind of variable you are talking about and what
2.25.9
I know how to use fromproperty to put the page number in a header or
footer. Can I get the page number in a variable so I can use it in
another text string?
TIA,
Paul
use-modules (lily page))
> auto-add-first-page-breaking =
> #(lambda (paper-book)
>(let ((default-pages (ly:page-turn-breaking paper-book)))
> (match default-pages
>(() '())
>((first-page . _)
> (let ((first-page-number (page-property first-
_)
(let ((first-page-number (page-property first-page 'page-number)))
(if (eqv? first-page-number 2)
(let* ((new-page (make-page paper-book 1 #f))
(paper (ly:paper-book-paper paper-book))
(props `(((fo
\version "2.25.8"
#(use-modules (lily page))
auto-add-first-page-breaking =
#(lambda (paper-book)
(let ((default-pages (ly:page-turn-breaking paper-book)))
(match default-pages
(() '())
((first-page . _)
(let ((first-page-number (page-property first-pa
ite -c showpage -f even-first-page.pdf
The problem I get is to know which pdf start with an even page number.
Maybe I can but have not I've not managed to get relevant info with
pdfinfo or exiftool.
I somehow thought there would be a standard flag in PDFs that would
say something like :
fi
Hi Pierre-Luc,
>> Are you thinking about a conditional bookpart markup that would
>> (could) add a blank (or similar) page at page-number 0 *only* when the
>> music starts on the left page ?
> 'ment page-number "1"... got confused :-)
Yeah… but “condition
Hi Kieren,
> > Is there a way to add an extra blank page automatically as page 1 only
> > when the auto-first-page-number sets the first (title) page to be 2 ?
> I tend to just use a top-level bookpart/markup.
> Will that work for you?
Are you thinking about a conditional bo
Hi Pierre-Luc,
> Is there a way to add an extra blank page automatically as page 1 only
> when the auto-first-page-number sets the first (title) page to be 2 ?
I tend to just use a top-level bookpart/markup.
Will that work for you?
Hope that helps!
Hi there,
When setting auto-first-page-number = ##t , it sometimes changes the
first page number (The one with the header and all) as expected as
page 1 or 2.
Is there a way to add an extra blank page automatically as page 1 only
when the auto-first-page-number sets the first (title) page to be
On 24/02/2023 20:34, Johannes Maibaum wrote:
I wanted to ask if it would be possible to improve the page-turn-
breaking algorithm for the case where the user also has ragged-bottom
set to #t (which you correctly assumed I was trying to use as well).
If we're looking at demerits for page-breakin
Hello Valentin,
I was trying your patch (attached, for reference) on a self-built
lilypond today. It does indeed help with my use case (ragged-bottom =
##t), so thanks for that. I would appreciate if this patch could be
included in lilypond.
The only exception is when there is a song with more th
Hello Valentin,
returning here after another year (and what a year...).
I wanted to ask if it would be possible to improve the page-turn-
breaking algorithm for the case where the user also has ragged-bottom
set to #t (which you correctly assumed I was trying to use as well).
Am Donnerstag, dem
Hello Johannes,
using page-turn-breaking only acts like this if ragged-bottom is set to #t
(which should be considered as weird behaviour). I suppose what’s happening
there is that with ragged-bottom set to #t there is no demerit for short
pages, as the pages are not stretched out (which is the
Hello,
I am working on a lead-sheet song book (i.e. one \book with many short
\scores inside), and I was looking for a way to optimize page turning
for musicians playing tunes from the book. Most songs fit on a single
page, but there are a few songs which span 2 or more pages.
I want to make sure
I've finally got this working as it should. What caught me out was that
the documentation uses \ to introduce the procedures following
\on-the-fly, and this works with the ones that start with a letter, e.g.
\last-page, so there's no obvious reason to doubt it; but this doesn't
work with \(on-
'page:page-number props)))
> arg)))
> (interpret-markup layout props new-arg)))
>
>\paper {
> oddHeaderMarkup = \markup
> \fill-line {
> ""
> \on-the-fly #not-part-first-page \fromproperty #'header:instrument
> \on-the-fly
#f "~aa" (1- (chain-assoc-get 'page:page-number props)))
arg)))
(interpret-markup layout props new-arg)))
\paper {
oddHeaderMarkup = \markup
\fill-line {
""
\on-the-fly #not-part-first-page \fromproperty #'header:instrument
\on-the-f
I am making a score one of whose pages (the last) will fold out from the
previous. The previous page is numbered 5, but I have been told to make
the fold-out page not 6 but 5a. I can't see how to change the header
format for just a single page - can anyone help?
Thanks, as ever,
Paul
@gnu.org
Subject: print-page-number = yes - made the page number go away? And other
thoughts.
So I have been looking for this page number thing having seen nothing.
But toying around and working on the automated diagram Flute script of notes
I noticed after having 2 pages that it was putting it on
So I have been looking for this page number thing having seen nothing.
But toying around and working on the automated diagram Flute script of
notes I noticed after having 2 pages that it was putting it on, and
fixed for another page having 3 in total, and pages 2 and 3 does put
numbers on it
"Title page"
}
}
\pageBreak
}
%
\bookpart {
\markup \justify{
Page of notes. Page "ii."
}
\paper {
tagline = ""
left-margin = 2\cm
right-margin = 2\cm
print-page-number = ##t
print-first-pag
e music is 1.
#(define-markup-command (page-ref layout props label gauge default)
(symbol? markup? markup?)
#:category other
"
@cindex referencing page numbers in text
Reference to a page number. @var{label} is the label set on the referenced
page (using the @code{\\label} command)
I have a series of scores in a small book. I want to have the first couple of
pages numbered in Roman numerals and then switch to Arabic. I have
accomplished that. The problem I face now is that I want the first Arabic
numbered page to be page 1. There is '\set currentBarNumber' but there do
Hi Mario,
I was hoping you would study my example in detail and play with it.
If you move the "" you can put the number on the right or the left. Hence:
oddHeaderMarkup = \markup
\sans
\fill-line {
\abs-fontsize #28 \on-the-fly #print-page-number-check-first
\sans \fr
At 11:44 13/08/2020 +0200, Mario Moles wrote:
But that's not what I was looking for! I want to move the odd page
numbers instead of the even ones and vice versa. It can be done?
Sorry, but this is even less clear! You want to move the odd page
numbers to the left, but not change the even page
> Il 12/08/20 14:20, Andrew Bernard ha scritto:
>> Hello Mario,
>>
>> In the \paper block, you can make headers like this (just an example
>> pulled fromi my code):
>>
>> oddHeaderMarkup = \markup
>> \sans
>> \fill-line {
>> "
code):
oddHeaderMarkup = \markup
\sans
\fill-line {
""
\abs-fontsize #28 \on-the-fly #print-page-number-check-first
\sans \fromproperty #'page:page-number-string
}
evenHeaderMarkup = \markup
\sans
\fill-line {
""
\abs-fontsi
At 13:39 12/08/2020 +0200, Mario Moles wrote:
How to move the page number from right to left?
If you just want all page numbers on the left, it could be as easy as:
oddHeaderMarkup = \evenHeaderMarkup
Brian Barker
On 2020-08-12 4:39 am, Mario Moles wrote:
Hi lilyponders!
How to move the page number from right to left?
You can customize the header markup to position elements how you prefer.
See titling-init.ly for more details on the defaults, but here is the
relevant excerpt:
oddHeaderMarkup
Hello Mario,
In the \paper block, you can make headers like this (just an example
pulled fromi my code):
oddHeaderMarkup = \markup
\sans
\fill-line {
""
\abs-fontsize #28 \on-the-fly #print-page-number-check-first
\sans \fromproperty #'page:pag
Hi lilyponders!
How to move the page number from right to left?
Thanks!
Replying to my own query here with the solution.
I was sent, off-list, a couple of solutions:
\paper { ...
oddHeaderMarkup = \markup \fill-line { "" "11" }
}
\paper {
print-first-page-number = ##t
first-page-number = 2 % or whatever number you need
}
The second
Forgot to Reply All
> On Aug 10, 2020, at 12:03 PM, bobr...@centrum.is wrote:
>
> Hi all,
>
> Is there a way to set the current page number? It's possible to set the
> current bar number but I have not found a reference to an analogous setting
> for page numbers.
Hi all,
Is there a way to set the current page number? It's possible to set the
current bar number but I have not found a reference to an analogous setting for
page numbers.
Thanks,
David
> On 29 Oct 2019, at 13:08, Stanton Sanderson wrote:
>
> Also runs for me, except the page numbers are not images but an increasing
> number of boxed
> question marks. (Mac- OS 10.14) - Stan
I tested with MacPorts lilypond-devel on MacOS 10.16. Maybe some font missing.
:
On 28 Oct 2019, at 16:02, David Nalesnik wrote:
Hi all,
Hello,
Here's something festive. The page number is replaced by a equivalent
number of scary Unicode creatures. (I'm sure it's adaptable for more
serious purposes!)
I get an error:
% lilypond halloween.ly
GNU L
ct 2019, at 16:02, David Nalesnik wrote:
> >
> > Hi all,
>
> Hello,
>
> > Here's something festive. The page number is replaced by a equivalent
> > number of scary Unicode creatures. (I'm sure it's adaptable for more
> > serious purpos
Hans,
On Mon, 28 Oct 2019, 3:21 p.m. Hans Åberg, wrote:
>
> > On 28 Oct 2019, at 16:02, David Nalesnik
> wrote:
> >
> > Hi all,
>
> Hello,
>
> > Here's something festive. The page number is replaced by a equivalent
> > number of scary Uni
> On 28 Oct 2019, at 16:02, David Nalesnik wrote:
>
> Hi all,
Hello,
> Here's something festive. The page number is replaced by a equivalent
> number of scary Unicode creatures. (I'm sure it's adaptable for more
> serious purposes!)
I get an error:
% li
Hi all,
Here's something festive. The page number is replaced by a equivalent
number of scary Unicode creatures. (I'm sure it's adaptable for more
serious purposes!)
Best,
David
\version "2.19.80"
#(define-markup-command (halloween-page-numbers layout props arg) (sch
Ok, this does the trick:
oddHeaderMarkup = \markup
\fill-line {
" "
\on-the-fly \not-part-first-page
\on-the-fly #print-page-number-check-first
\fromproperty #'page:page-number-string
}
evenHeaderMarkup = \markup
\fill-line {
\on-the-fly \not-part-fir
Thanks, Aaron. Really appreciate your reply and advice. This all makes sense.
Just a quick follow up question: how to adjust the settings when page
numbers alternate between "left and right" header areas? Ideally, I'd like
to be able to automate the process, so to speak, so that regardless of odd
On 2019-03-02 6:52 pm, nagymusic wrote:
I have a few \bookpart blocks in my score (within a \book { } block).
While
keeping the same order of page numbers, is it possible to set each
\bookpart
so it doesn't print its very first page number? Something like
print-first-page-number = ##f bu
I have a few \bookpart blocks in my score (within a \book { } block). While
keeping the same order of page numbers, is it possible to set each \bookpart
so it doesn't print its very first page number? Something like
print-first-page-number = ##f but for each \bookpart block?
Thank you!
--
Hi Mátyás,
by the way: a subject is helpful :-)
Only saying…
Yours, Simon
On 23.03.2016 08:33, Mátyás Seress wrote:
Hi guys,
I just downloaded the Lilypond Notation Reference pdf for version
2.19.38 from here:
http://www.lilypond.org/doc/v2.19/Documentation/notation.pdf
and I noticed that
2016-01-07 16:55 GMT+01:00 Jan-Peter Voigt :
> Ah, yes
> To use \page-ref is another option. You just need a label at the end of the
> last score.
>
> Chefredakteur
> Jan-Peter
>
> Am 7. Januar 2016 15:43:26 MEZ, schrieb Robin Bannister :
>>
>> tisimst wrote:
>>>
>>> Thank you! That will at leas
ue proves stable ;-)
>
> Cheers
> Jan-Peter
>
> Am 07.01.2016 um 13:51 schrieb Abraham Lee:
>
> > Greetings, all!
> >
> > Is there any kind soul out there that will show me how to get the total
> > page count so I can inclu
- Original Message -
From: "Karol Majewski"
To: "lilypond-user"
Sent: Tuesday, September 16, 2014 11:10 PM
Subject: wrong page-number position in 2.19.14
I noticed that in 2.19.14, page numbers in oddHeaderMarkup are
center-aligned, while in evenHeaderMarkup
I noticed that in 2.19.14, page numbers in oddHeaderMarkup are center-aligned,
while in evenHeaderMarkup - left-aligned. This looks strange. Bug?
{
c'1
\pageBreak
c'1
\pageBreak
c'1
\pageBreak
c'1
\pageBreak
c'1
\pageBreak
}
-- Karol
___
lilypond-u
Hi Alex,
> Page numbers are consistently too close to other content. What is the best
> way to force them away?
Adjust the appropriate paper spacing variable(s), e.g.:
\version "2.19"
\bookpart {
\paper {
oddHeaderMarkup = \markup \abs-fontsize #12 \fromproperty
#'page:page-number-stri
Page numbers are consistently too close to other content. What is the best
way to force them away?
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
: lilypond-user-bounces+lilypond=fishlet@gnu.org
[mailto:lilypond-user-bounces+lilypond=fishlet@gnu.org] On Behalf Of David
Nalesnik
Sent: Saturday, October 26, 2013 1:14 PM
To: Hwaen Ch'uqi
Cc: EdBeesley; lilypond-user; Trevor Daniels
Subject: Re: Change page number duri
Hwaen Ch'uqi wrote
> Greetings Ed,
> I realize this is quite the crude solution, and perhaps you have
> already considered it, but could you not simply include unneeded
> measures at that particular area, inserting a \pageBreak between each?
> At the page with the corr
Hi,
>
> > You're right, there's no way to set the page number, AFAIK :(
>
Well, no simple way. It is possible to write a markup function to
increment the page numbers at a certain point.
I retooled a function which does Roman numeral page numbers here:
http://www.mail-arc
Greetings Ed,
I realize this is quite the crude solution, and perhaps you have
already considered it, but could you not simply include unneeded
measures at that particular area, inserting a \pageBreak between each?
At the page with the correct page number, you could then resume your
Ed, you wrote Saturday, October 26, 2013 11:15 AM
> Hi Trevor, sorry all I can see in those pages is how to change the bar
> number? I'm after a way to change the page number, much like the \set
> Score.currentBarNumber but for pages. I'm assuming that because LP paginates
&g
Trevor Daniels wrote
> EdBeesley wrote Saturday, October 26, 2013 12:25 AM
>
>> I was just wondering is there an easier way to get around this, for
>> example
>> a bit of code that will 'reset' the page count to the number I want, e.g:
>> "set
EdBeesley wrote Saturday, October 26, 2013 12:25 AM
> I was just wondering is there an easier way to get around this, for example
> a bit of code that will 'reset' the page count to the number I want, e.g:
> "set current page number to 7"
There is. See
http
e with Acrobat. This is
fine but now means the page count after this page is incorrect.
One solution for this is to start a new bookpart section with the correct
page number, but this would then entail having to move code around into new
variables etc etc.
I was just wondering is there an easi
text:
http://lilypond.1069038.n5.nabble.com/Page-number-changes-forcing-headers-to-appear-on-second-page-tp151916p152024.html
Sent from the User mailing list archive at Nabble.com.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mai
ly.
For anyone with a similar problem, the solution that worked for me was this:
oddFooterMarkup = \markup \on-the-fly #(on-page 1) { }
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Page-number-changes-forcing-headers-to-appear-on-second-page-tp151916p152006.html
S
/lilypond.1069038.n5.nabble.com/file/n151988/copyright_in_bookparts.ly>
Eluze
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Page-number-changes-forcing-headers-to-appear-on-second-page-tp151916p151988.html
Sent f
Hi Ed,
> EdBeesley wrote
> > Please forgive me bumping this thread but I quite urgently need to find
> > the answer to this and despite my best attempts I can't figure it out.
> >
> > To recap in brief: I have a title page which Lilypond is counting as the
> > 'first' page of the score, so that m
As a possible pseudo-last resort, you could always just print out a separate
.ly file as a title page, in a pinch, couldn't you? That would fix the page
number conflict / issue since you're on a tight deadline.
I found this template in my collection, which I originally downloaded
nfo isn't being
printed on the first actual score page, can anyone give me a way to force
Lilypond to print the the copyright field on page 2?
Thanks in advance,
Ed
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Page-number-changes-forcing-headers-to-appear-on-second-
Thanks for your suggestions so far.
Sorry for the example, I missed a \ in front of the first paper and I should
have commented out my blah blah blahs, but anyway I've solved the problem
with the page-number-first: it has to go in the \paper block at the start,
before you open any \boo
gt;
> \bookpart {
> paper {
> first-page-number = #0
> print-first-page-number = ##f
> }
>\markup {blah blah blah title page stuff}
> }
>
> \bookpart {
>
> \paper {
> first-page-number = #1
> print-first-page-n
On 07/10/13 09:33, EdBeesley wrote:
2.16.2
I've added a title page to my score, the best way I could think of doing it
was to wrap the title page and score in separate \bookpart's . The structure
is like below:
\bookpart {
paper {
first-page-number = #0
print-first-p
to book parts using \bookpart blocks. Book
parts are separated by a page break, and can start with a title, like the
book itself, by specifying a \header block."
Eluze
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Page-number-changes-forcing-headers-to-appear-on-sec
2.16.2
I've added a title page to my score, the best way I could think of doing it
was to wrap the title page and score in separate \bookpart's . The structure
is like below:
\bookpart {
paper {
first-page-number = #0
print-first-page-number = ##f
}
\markup {blah blah
Snowdusk wrote
> From page 1 to page 5, the pages are completely filled, thus the lowest
> staff would nearly touch the page number. I hope this is easy to fix now.
I thought I had shown the solution in my prior post - just include
last-bottom-spacing #'basic-distance = #44
Eluze
Snowdusk wrote
> I would gladly include the example, if the coding isn't that long. I would
> need to include the example from the entire page to show that the page
> number is popping up too high. Otherwise, if I only include a few lines
> from the music score, it would look fine
if you provide an example this will increase your chance of getting an
answer.
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Page-Number-Too-High-tp148969p148971.html
Sent from the User mailing list archive at Nabble.com
sing \line removes empty-stencils
% produced by #not-first-page etc
\line {
% page-number not on first-page
\on-the-fly #not-first-page
% page-number not on last-page
\on-the-fly #not-la
What i can make in this situation?
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Question-about-page-number-position-and-ornamentation-tp136399p136870.html
Sent from the User mailing list archive at Nabble.com.
___
lilypond
#2
\fromproperty #'page:page-number-string
\override #'(font-name . "Arial") \fontsize #2 "-"
}
\on-the-fly #first-page \fromproperty #'header:copyright
}
evenFooterMarkup = \oddFooterMarkup
}
first page number is no disappear. All page numbe
I use in the \paper block to have no
page number on the first page, the page number centred at the bottom of
the page for pages 2 to n-1, and the tagline on the final page:
\paper {
%% cf. ly/titling-init.ly
#(define (not-last-page layout props arg)
(if (and (chain-assoc-get
It works, bot now i have a new problem. Copyright line is disappear. I
entered «\on-the-fly #not-first-page » at footerMarkup block. Without
results.
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Question-about-page-number-position-and-ornamentation-tp136399p136740
Thank you! It works!
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Question-about-page-number-position-and-ornamentation-tp136399p136677.html
Sent from the User mailing list archive at Nabble.com.
___
lilypond-user mailing
-variables-for-page-numbering
for
more information. Here's an example that does most of what you want. It
gets rid of the page numbers on the top of the page and puts them on the
bottom. This also shows how you can override fonts and center/resize
markup. If you want to show the page number on p
Hello everybody!
I have a question about page number position.
I need to dispose page numder at bottom of page. And to align it center.
I need what page number looks like this:
- 1 -, or ~ 1 ~
where «1» printed by Font A, for example, Times, and «-» or «~» printed by
Font B, for example
ncil Y)))
(ly:make-stencil
`(delay-stencil-evaluation
,(delay (ly:stencil-expr
(let* ((table (ly:output-def-lookup layout 'label-page-table))
(page-number (if (list? table)
(assoc-get label table)
ing stencil expression could
be used (in a fixed vertical space of course) that decides the hymn
number position only when the stencil is rendered. But is then the page
number information accessible? (I guess not)
I now manually set a variable to determine the song title layout.
Wilbert
--
W
Wilbert Berendsen wrote Monday, September 10, 2012 7:40 AM
> It seems I can't access the page:page-number-string property inside a
> markup function if it is not called in the context of a page header or
> footer.
> Is there any possibility for a regular (toplevel) \markup { } to know
> the page
Hi,
I use regular markups to display titles for hymns in a hymn book. The
hymn number should align to the right on right pages but to the left on
left pages.
A hymn can start anywhere on a page.
It seems I can't access the page:page-number-string property inside a
markup function if it is not ca
On 01/03/12 13:08, Nick Payne wrote:
\version "2.15.25"
\paper {
print-page-number = ##t
print-first-page-number = ##t
oddHeaderMarkup = \markup \null
evenHeaderMarkup = \markup \null
oddFooterMarkup = \markup {
\fill-line {
\on-the-fly #print-p
On Thu, Mar 01, 2012 at 02:19:49PM +1100, Nick Payne wrote:
> In the following, for some reason the footnote appears three times
> on the first page, overlaying the lowest stave, and once each on the
> second and third pages. Also, on page two, the footnote is below the
> page number,
In the following, for some reason the footnote appears three times on
the first page, overlaying the lowest stave, and once each on the second
and third pages. Also, on page two, the footnote is below the page
number, and on page three it is above the tagline.
It's some interaction wit
In the following, how can I increase the spacing between the footnote
and page number? Trying the \override FootnoteItem #'Y-extent doesn't
make any difference:
\version "2.15.25"
\paper {
print-page-number = ##t
print-first-page-number = ##t
oddHeaderMa
-fly
#not-first-page \fromproperty #'page:page-number-string }
evenHeaderMarkup = \markup \fill-line { \fontsize #2 \on-the-fly
#not-first-page \fromproperty #'page:page-number-string " " }
}
2012/2/6 Nick Payne
> On 07/02/12 07:00, Caio Barros wrote:
>
>> Hello.
>> h
On 07/02/12 07:00, Caio Barros wrote:
Hello.
how can I change the font size of the page number? I cannot find this
information anywhere.
I don't know if there are simpler ways, but you can do it like this.
Change the \fontsize value:
\version "2.14.1"
\paper {
1 - 100 of 163 matches
Mail list logo