Path: utzoo!mnetor!uunet!husc6!think!ames!pasteur!ucbvax!hplabs!hpda!hpsemc!bd From: bd@hpsemc.HP.COM (bob desinger) Newsgroups: comp.text Subject: Re: troff macro for drop-initials at beginning of paragraphs Message-ID: <1270001@hpsemc.HP.COM> Date: 19 Feb 88 02:22:01 GMT References: <559@agsm.unsw.oz> Organization: HP SEMC, Cupertino, CA Lines: 14 Here's a small fix to Robert Marks's cool .DI drop-initial macro. The macro initially translates ~ to space but never restores it---so in his sample paragraph (and any text after it), ~ prints as space instead of ~. The fix is simple: just before the ".." that ends the .DI macro, insert two lines: .\" Allow ~ to be printed in subsequent text. .tr ~~ The line right after ".tr ~~" should be the ".." closing request. Thanks, Robert, for a great macro!