\once altering page number

2024-01-28 Thread Francesco Intrieri
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,

Re: extracting page number

2023-11-03 Thread Paul Scott
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/...

Re: extracting page number

2023-11-03 Thread Paul Scott
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{

Re: extracting page number

2023-11-03 Thread Jean Abou Samra
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

Re: extracting page number

2023-11-03 Thread Paul Scott
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

Re: extracting page number

2023-11-03 Thread Jean Abou Samra
> 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) }

Re: extracting page number

2023-11-03 Thread Paul Scott
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

Re: extracting page number

2023-11-03 Thread Hans Aikema
> 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

Re: extracting page number

2023-11-03 Thread Jean Abou Samra
 > 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

extracting page number

2023-11-02 Thread Paul Scott
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

Re: auto-first-page-number add extra blank page

2023-10-11 Thread Pierre-Luc Gauthier
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-

Re: auto-first-page-number add extra blank page

2023-09-18 Thread Jean Abou Samra
_) (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

Re: auto-first-page-number add extra blank page

2023-09-18 Thread Jean Abou Samra
\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

Re: auto-first-page-number add extra blank page

2023-09-18 Thread Pierre-Luc Gauthier
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

Re: auto-first-page-number add extra blank page

2023-08-16 Thread Kieren MacMillan
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

Re: auto-first-page-number add extra blank page

2023-08-16 Thread Pierre-Luc Gauthier
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

Re: auto-first-page-number add extra blank page

2023-08-16 Thread Kieren MacMillan
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!

auto-first-page-number add extra blank page

2023-08-10 Thread Pierre-Luc Gauthier
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

Re: Page turning in song book: Only \scores with more than 1 page should be forced to start on even page number

2023-02-26 Thread Wol
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

Re: Page turning in song book: Only \scores with more than 1 page should be forced to start on even page number

2023-02-26 Thread Johannes Maibaum
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

Re: Page turning in song book: Only \scores with more than 1 page should be forced to start on even page number

2023-02-24 Thread Johannes Maibaum
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

Re: Page turning in song book: Only \scores with more than 1 page should be forced to start on even page number

2022-02-23 Thread Valentin Petzel
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

Page turning in song book: Only \scores with more than 1 page should be forced to start on even page number

2022-02-23 Thread Johannes Maibaum
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

Re: Non-numeric page number

2021-08-25 Thread Paul Hodges
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-

Re: Non-numeric page number

2021-08-24 Thread Paul Hodges
'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

Re: Non-numeric page number

2021-08-24 Thread Thomas Morley
#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

Non-numeric page number

2021-08-24 Thread Paul Hodges
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

RE: print-page-number = yes - made the page number go away? And other thoughts.

2021-06-22 Thread Mark Stephen Mrotek
@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

print-page-number = yes - made the page number go away? And other thoughts.

2021-06-22 Thread darkijah
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

Re: set page number

2021-02-07 Thread bobr...@centrum.is
"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

Re: set page number

2021-02-07 Thread Hwaen Ch'uqi
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)

set page number

2021-02-07 Thread bobr...@centrum.is
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

Re: Page number position

2020-08-13 Thread Andrew Bernard
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

Re: Page number position

2020-08-13 Thread Brian Barker
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

Re: Page number position

2020-08-13 Thread Jacques Menu
> 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 { >> "

Re: Page number position

2020-08-13 Thread Mario Moles
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

Re: Page number position

2020-08-12 Thread Brian Barker
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

Re: Page number position

2020-08-12 Thread Aaron Hill
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

Re: Page number position

2020-08-12 Thread Andrew Bernard
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

Page number position

2020-08-12 Thread Mario Moles
Hi lilyponders! How to move the page number from right to left? Thanks!

Re: set-current-page-number

2020-08-11 Thread bobr...@centrum.is
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

Re: set-current-page-number

2020-08-10 Thread Paul Scott
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.

set-current-page-number

2020-08-10 Thread bobr...@centrum.is
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

Re: halloween page-number silliness

2019-10-29 Thread Hans Åberg
> 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.

Re: halloween page-number silliness

2019-10-29 Thread Ben
: 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

Re: halloween page-number silliness

2019-10-29 Thread Stanton Sanderson
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

Re: halloween page-number silliness

2019-10-28 Thread David Nalesnik
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

Re: halloween page-number silliness

2019-10-28 Thread Hans Åberg
> 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

halloween page-number silliness

2019-10-28 Thread David Nalesnik
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

Re: First page number not printed in a \bookpart

2019-03-05 Thread nagymusic
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

Re: First page number not printed in a \bookpart

2019-03-03 Thread nagymusic
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

Re: First page number not printed in a \bookpart

2019-03-02 Thread Aaron Hill
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

First page number not printed in a \bookpart

2019-03-02 Thread nagymusic
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! --

Re: PDF page number hyperrefs?

2016-03-23 Thread Simon Albrecht
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

Re: Include total page count in page number

2016-01-07 Thread Thomas Morley
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

Re: Include total page count in page number

2016-01-07 Thread tisimst
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

Re: wrong page-number position in 2.19.14

2014-09-17 Thread Phil Holmes
- 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

wrong page-number position in 2.19.14

2014-09-16 Thread Karol Majewski
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

Re: Page number padding

2014-02-10 Thread Kieren MacMillan
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 number padding

2014-02-10 Thread Alex Loomis
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

RE: Change page number during score

2013-10-28 Thread Curt McDowell
: 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

Re: Change page number during score

2013-10-27 Thread EdBeesley
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

Re: Change page number during score

2013-10-26 Thread David Nalesnik
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

Re: Change page number during score

2013-10-26 Thread Hwaen Ch'uqi
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

Re: Change page number during score

2013-10-26 Thread Trevor Daniels
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

Re: Change page number during score

2013-10-26 Thread EdBeesley
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

Re: Change page number during score

2013-10-26 Thread Trevor Daniels
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

Change page number during score

2013-10-25 Thread EdBeesley
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

Re: Page number changes & forcing headers to appear on second page

2013-10-09 Thread Eluze
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

Re: Page number changes & forcing headers to appear on second page

2013-10-08 Thread EdBeesley
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

Re: Page number changes & forcing headers to appear on second page

2013-10-08 Thread Eluze
/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

Re: Page number changes & forcing headers to appear on second page

2013-10-08 Thread David Nalesnik
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

Re: Page number changes & forcing headers to appear on second page

2013-10-08 Thread SoundsFromSound
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

Re: Page number changes & forcing headers to appear on second page

2013-10-08 Thread EdBeesley
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-

Re: Page number changes & forcing headers to appear on second page

2013-10-07 Thread EdBeesley
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

Re: Page number changes & forcing headers to appear on second page

2013-10-07 Thread Richard Shann
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

Re: Page number changes & forcing headers to appear on second page

2013-10-06 Thread Nick Payne
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

Re: Page number changes & forcing headers to appear on second page

2013-10-06 Thread Eluze
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

Page number changes & forcing headers to appear on second page

2013-10-06 Thread EdBeesley
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

Re: Page Number Too High

2013-08-12 Thread Eluze
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

Re: Page Number Too High

2013-08-11 Thread 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

Re: Page Number Too High

2013-08-10 Thread MarcM
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

Re: Question about page number position and ornamentation

2012-11-26 Thread Thomas Morley
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

Re: Question about page number position and ornamentation

2012-11-26 Thread Rustik
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

Re: Question about page number position and ornamentation

2012-11-23 Thread Rustik
#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

Re: Question about page number position and ornamentation

2012-11-23 Thread Nick Payne
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 &#x

Re: Question about page number position and ornamentation

2012-11-23 Thread Rustik
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

Re: Question about page number position and ornamentation

2012-11-21 Thread Rustik
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

Re: Question about page number position and ornamentation

2012-11-15 Thread Mark Witmer
-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

Question about page number position and ornamentation

2012-11-15 Thread Rustik
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

Re: how to know the current page number from inside a regular markup (not score/book header)

2012-09-10 Thread Jay Anderson
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)

Re: how to know the current page number from inside a regular markup(not score/book header)

2012-09-10 Thread Wilbert Berendsen
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

Re: how to know the current page number from inside a regular markup(not score/book header)

2012-09-10 Thread Trevor Daniels
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

how to know the current page number from inside a regular markup (not score/book header)

2012-09-09 Thread Wilbert Berendsen
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

Re: Space foot note away from page number at bottom of page

2012-03-03 Thread Nick Payne
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

Re: Strange interaction between page number settings and footnote

2012-03-01 Thread Colin Hall
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,

Strange interaction between page number settings and footnote

2012-02-29 Thread Nick Payne
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

Space foot note away from page number at bottom of page

2012-02-29 Thread Nick Payne
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

Re: change page number size

2012-02-16 Thread Caio Barros
-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

Re: change page number size

2012-02-06 Thread Nick Payne
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   2   >