Hi, I’m still having more questions but that’s great and it means Texmacs is just performing well, it’s just that I don’t know how to use it
This time, I’d like to know how to put some text at the bottom of the page. Example is for example the last page of a book that contains the ISBN or the print date, or in the first pages of a book for some light credits. In LibreOffice, I would generally hack the page footer for this specific page and put the number of lines that I need. With texmacs however, it seems the page footer cannot break lines.
Basically, I had the idea of doing:
Previous page content
<page-break*>
<vspace|0.5par>
<\with|par-mode|center>
Credits for the cover photograph: blah blah blah...
</with>
<page-break*>This is the next page
My idea is to use \page-break
instead of \new-page
because page-break seems to generally ensure the previous page is justified vertically (it tries to avoid space at the bottom). I thought that adding a \vspace
before my paragraph that is intended to be shown at the bottom of the page would take all space available so the paragraph is at the bottom, but it does not work.
Of course, I can set the vspace length to match approximately the space needed to shift my paragraph down, but I’d like something that sticks at the bottom of the page independent of the font size or other things I could put at the top of the page.
is that possible?