Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!mit-eddie!genrad!decvax!ucbvax!cartan!weyl.Berkeley.EDU!rusty From: rusty@weyl.Berkeley.EDU (Rusty Wright) Newsgroups: comp.text Subject: Re: Limit/adjust space between `items' in *TeX Message-ID: <520@cartan.Berkeley.EDU> Date: Mon, 8-Dec-86 19:23:46 EST Article-I.D.: cartan.520 Posted: Mon Dec 8 19:23:46 1986 Date-Received: Tue, 9-Dec-86 00:04:13 EST References: <1121@decuac.DEC.COM> Sender: daemon@cartan.Berkeley.EDU Reply-To: rusty@weyl.Berkeley.EDU (Rusty Wright) Organization: Math Dept. UC Berkeley Lines: 32 1. The amount of space between items is \itemsep+\parsep; your Local Guide should have an errata sheet at the back that points this out. 2. You can't simply do something like \setlength{\itemsep}{0pt} \setlength{\parsep}{0pt} \begin{itemize} ... because the \begin{itemize} command contains commands that set the values of \itemsep and \parsep (see the definitions of \@listi, \@listii, et al.) As the LaTeX book suggests, you must make up a new environment using the low-level \list command as in \newenvironment{myitemize}{\begin{list}...}{\end{list}} which is then utilized with \begin{myitemize} \item Blah blah blah ... ... \end{myitemize} The LaTeX commands you'll need to study are \newenvironment and \list. -------------------------------------- rusty c. wright rusty@weyl.berkeley.edu ucbvax!weyl!rusty