Re: OT: pagenumber

2016-03-06 Thread David Kastrup
Simon Albrecht writes: > On 04.03.2016 22:53, Blöchl Bernhard wrote: > >> A much better solution might be (just as a question/recommendation) >> not to strain a simple minded user like me with such subtleties. > > This is not a ‘subtlety’ but a fundamental design principle; as a > matter of fact,

Re: OT: pagenumber

2016-03-06 Thread Simon Albrecht
On 04.03.2016 22:53, Blöchl Bernhard wrote: But please do not forget that the manual is not addressed to programmers in first place but simple minded users like me. As a simple minded user I am only just interested how to get it work! I don’t want LilyPond to be ‘esoteric’, but… At least I wo

Re: OT: pagenumber

2016-03-05 Thread David Kastrup
Thomas Morley writes: > 2016-03-05 9:55 GMT+01:00 David Kastrup : >> Blöchl Bernhard writes: >> >>> I would recommend to add the options a user has to any item in the >>> chapter (maybe in other chapters as well) >>> 4.1.6 Other \paper variables >>> in the actual example that would mean >>> pri

Re: OT: pagenumber

2016-03-05 Thread Thomas Morley
2016-03-05 9:55 GMT+01:00 David Kastrup : > Blöchl Bernhard writes: > >> I would recommend to add the options a user has to any item in the >> chapter (maybe in other chapters as well) >> 4.1.6 Other \paper variables >> in the actual example that would mean >> print-page-number >> default is

Re: OT: pagenumber

2016-03-05 Thread David Kastrup
Blöchl Bernhard writes: > I would recommend to add the options a user has to any item in the > chapter (maybe in other chapters as well) > 4.1.6 Other \paper variables > in the actual example that would mean > print-page-number > default is ##true. If set to false (##f), page numbers are not

Re: OT: pagenumber

2016-03-05 Thread Noeck
Hi Andrew, Am 05.03.2016 um 01:11 schrieb Andrew Bernard: > Hello Joram, > > Just for the record, I was not proposing this as your reply indicates. I know. I was quoting from the wrong mail, sorry. Joram ___ lilypond-user mailing list lilypond-user@

Re: OT: pagenumber

2016-03-05 Thread Andrew Bernard
Hi Blöchl, Although I am a programmer, I found the initial learning to have to use ##f and ##t for booleans, as a user wanting to get on and engrave music, obscure, difficult to remember, and easy to get wrong, what with the has escaped hash, even if you do read the manual carefully. Using bool

Re: OT: pagenumber

2016-03-05 Thread Blöchl Bernhard
Setting myself into the situation of a maybe user wanting to switch off the pagenumber I would google "lilypond pagenumber". Google is correcting me to page number (in correct English written separately). The first hit is LilyPond Notation Reference: 4.1.6 Other \paper variables http://lilypond

Re: OT: pagenumber

2016-03-04 Thread Andrew Bernard
Hello Joram, Just for the record, I was not proposing this as your reply indicates. I was merely sending back code to Xavier with a suggestion on a different matter. Once can’t correct everything! Andrew On 5/03/2016, 07:11, "Noeck" wrote: Hi, Am 04.03.2016 um 13:57 schrieb Andrew Bernard

Re: OT: pagenumber

2016-03-04 Thread Blöchl Bernhard
I know that thing with "read carefully" and RTFM very well and read a lot of programming manuals as I was active working in that field - as I was active ... You refer to the section " ... Note the occurrence of hash signs, (#), in two different places – as part of the Boolean value before the

Re: OT: pagenumber

2016-03-04 Thread Trevor Daniels
Blöchl Bernhard wrote Friday, March 04, 2016 9:11 PM > "false is ##f " really always? > > Please check > http://www.lilypond.org/doc/v2.19/Documentation/learning/modifying-context-properties > > Seriously, is this an exception? Should one throw a bug report or may be > a suggestion for harmon

Re: OT: pagenumber

2016-03-04 Thread Noeck
We are talking about a ly-syntax environment here and Malte is right that ##f is false there. The first # is switching to scheme and the #f is false in scheme. This is directly (and better) explained in the link you sent. Cheers, Joram Am 04.03.2016 um 22:11 schrieb Blöchl Bernhard: > "false is #

Re: OT: pagenumber

2016-03-04 Thread Blöchl Bernhard
"false is ##f " really always? Please check http://www.lilypond.org/doc/v2.19/Documentation/learning/modifying-context-properties Seriously, is this an exception? Should one throw a bug report or may be a suggestion for harmonization? That would ease the use of lilypond for simple minded user

Re: OT: pagenumber

2016-03-04 Thread Malte Meyn
Am 04.03.2016 um 21:54 schrieb Noeck: myfoo = "ok" % but mybar = bliblablup % why is that allowed? Because LilyPond allows strings without quotes as long as they contain only certain characters (alphabet and probably some others). Good for lyrics for example, but also when using \clef

Re: OT: pagenumber

2016-03-04 Thread Noeck
Thanks Malte, Am 04.03.2016 um 21:47 schrieb Malte Meyn: > print-page-number = ##f Yes, so coming back to the original post of Xavier: You probably mean print-page-number = ##f instead of pagenumber = no. It was not your question but perhaps it helps nonetheless. And concerning lilypond, would

Re: OT: pagenumber

2016-03-04 Thread Malte Meyn
Am 04.03.2016 um 21:42 schrieb Blöchl Bernhard: Just a guess, try pagenumber = #f That’s not ‘more correct’; false is ##f, not #f in LilyPond … Besides of that, what you mean is \paper { print-page-number = ##f } So maybe try out before guessing ;) _

Re: OT: pagenumber

2016-03-04 Thread Blöchl Bernhard
Just a guess, try pagenumber = #f Am 04.03.2016 21:11, schrieb Noeck: Hi, Am 04.03.2016 um 13:57 schrieb Andrew Bernard: \layout { pagenumber = no ... } Sorry for diverging from the original topic, but what is pagenumber = no? I couldn't find it in the documentation and I doubt that no i