Skip to Content.
Sympa Menu

texmacs-users - Re: Responder: Applying the luna.ts style

Subject: mailing-list for TeXmacs Users

List archive

Re: Responder: Applying the luna.ts style


Chronological Thread 
  • From: address@hidden
  • To: address@hidden
  • Subject: Re: Responder: Applying the luna.ts style
  • Date: Fri, 17 Jan 2003 16:42:37 +0100

On Thu, Jan 16, 2003 at 11:52:56PM +0100, address@hidden wrote:
> Hi,
>
> I think that I found a "dirty" way to apply the luna style to the
> thesis doc, just paste the markup of luna.ts at the begining of that
> doc.

That is dirty, indeed.

> A nice thing about the TeXmacs markup is tha is a very readable one.
> However I have a question, because I dont master the markup: How can I
> modify the markup on luna.ts to put the number page in the middle of
> the page? It is related to htab tag?

Yes, just change this:

(document
"Display the page number on all pages in the footer"
(assign "odd page footer" (concat
(format "no first indentation")
(htab "5mm")
(quote (apply "thepage"))))
(assign "even page footer" (concat
(format "no first indentation")
(quote (apply "thepage"))
(htab "5mm"))))

To this:

(document
"Display the page number on all pages in the footer"
(assign "odd page footer" (concat
(format "no first indentation")
(htab "5mm")
(quote (apply "thepage"))
(htab "5mm")))
(assign "even page footer" (concat
(format "no first indentation")
(htab "5mm")
(quote (apply "thepage"))
(htab "5mm"))))

You may paste the previous snippet using Edit->Paste from->Scheme.

--
David Allouche | GNU TeXmacs -- Writing is a pleasure
Free software engineer | http://www.texmacs.org
http://ddaa.net | http://alqua.com/tmresources
address@hidden | address@hidden
TeXmacs is NOT a LaTeX front-end and is unrelated to emacs.



Archive powered by MHonArc 2.6.19.

Top of Page