[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] Simple question ...
From: |
Jon Snader |
Subject: |
Re: [Groff] Simple question ... |
Date: |
Fri, 27 Sep 2002 10:16:56 -0400 |
User-agent: |
Mutt/1.3.25i |
On Fri, Sep 27, 2002 at 03:47:19PM +0200, Lars Segerlund wrote:
>
> I have a silly question, I would like to include command lines in
> fixed width type, without any special typesetting.
>
> For example :
>
> >cd /
> >rm -rf *
>
I like to indent mine a little, so I usually do something like this:
Some regular text
.DS \" or maybe .in +5n
.CW
cd /
rm *.*
reboot
.DE \" .in
. \" .LP
Some more regular text.
If you don't want the indent, you can do:
Some regular text
.CW
.nf
cd /
rm *.*
reboot
.LP
Some more regular text.
Of course, it's best to put this stuff in a pair of macros to start and
stop the ``computer output'' text.
Jon Snader