[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] MM Macros
From: |
carsten . kunze |
Subject: |
Re: [Groff] MM Macros |
Date: |
Wed, 1 Jul 2015 09:59:12 +0200 (CEST) |
Hi Damian,
> To where should I send my examples.
I would say if you attach only the document in .gz format (or .tgz if there is
more than one file) it is ok. Many don't like attachments but they have the
advantage that the mailer can't change white space etc. The PS output is IMHO
not required (currently).
> Also, my line 2086 in m.tmac says
>
> address@hidden \\n[ds*old-ll]
>
> which is from contrib in 1.22.3.
>
> Looking at your diffs, it seems you have replaced this with
>
> +.nr ds*div-ll \\n[ds*old-ll]
> +.if \\n[ds*format]=1 .nr ds*div-ll -\\n(Sin
>
> Is that correct?
You need to change ds*old-ll into ds*div-ll in the original line too.
What I did is to reduce the line length in the diversion by \n(Si times ens if
the first argument to .DS is 1 or I.
So I copied \n[ds*old-ll] into a new register and substracted \n[SI]n in case
of this argument to .DS.
(It would also be possible to not change the line length and use .in \n(Sin for
the diversion and output the diversion with zero indent but in this case (few)
more lines need to be changed in m.tmac.)
--Carsten