[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] groff MM problem with AU/AT
From: |
Anton Shepelev |
Subject: |
Re: [Groff] groff MM problem with AU/AT |
Date: |
Sat, 21 Jan 2012 14:35:59 +0400 |
Ken Mandelberg:
> It seems like AU/AT with the MM macros is not
> working properly.
The problem is with the Memorandum-style signature
macro.
Without .warn in the beginning of your file you were
missing several warnings from Groff. I added it and
saw where the errors were. It turns out that the
.SG macro requires that at least four arguments be
passed to the .AU macro. This example works:
.warn
.TL "Anton's title"
.MT 5
.AU Smith J. Location Dept.
.AT "CEO"
.P
testing
.FC
.SG
The "--" you are talking about are two field divi-
sors, between location, department and initials, and
the signature macro seems to handle them incorrectly
when at least one of them is empty.
Anton