Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site rna.UUCP
Path: utzoo!watmath!clyde!cbosgd!ihnp4!zehntel!hplabs!hao!seismo!cmcl2!rna!dan
From: dan@rna.UUCP (Dan Ts'o)
Newsgroups: net.unix
Subject: Re: Full text of YASC (actually a n/troff question)
Message-ID: <349@rna.UUCP>
Date: Sun, 13-Jan-85 20:20:04 EST
Article-I.D.: rna.349
Posted: Sun Jan 13 20:20:04 1985
Date-Received: Wed, 16-Jan-85 21:17:13 EST
References: <199@usl.UUCP> 
Reply-To: dan@rna.UUCP ( Ts'o)
Organization: Rockefeller Neurobiology, NYC
Lines: 29
Summary: 

In article  jaap@mcvax.UUCP (Jaap Akkerhuis) writes:
>In article <199@usl.UUCP> sigma@usl.UUCP (Spyridon Triantafyllopoulos) writes:
>	>How do you change the line length
>	>in the macro package "-ms" ? I tried
>	>the .nr LL 7.5 or others, and it 
>	>would not work.
>	> .....
>	>P.S Enter it to the stupid question
>	>of the year award, but our local nroff
>	>and macro guru is on vacation...
>
>Looks like a nice entry. Why don't you read the manual? Although it
>might look a bit obscure in the N/Troff manual, you would have found
>out that the .nr request will take default values as units.
>Guessing that you want to change the line length to 7.5 Pica's,
>you should have said:
>	.nr LL 7.5P

Well, that probably isn't the problem. The probable problem is "documented"
in an obscure sentence in the MS documentation. You often need to follow
the .nr command with the corresponding nroff command in order to get an
immediate effect since the .nr simply changes the value of a number register
used by MS and MS won't recognize the change until it is "entered" by a
real MS macro like .PP . Thus you often want:

	.nr LL 7.5i
	.ll 7.5i

						Dan