Path: utzoo!utgpu!jarvis.csri.toronto.edu!clyde.concordia.ca!uunet!samsung!zaphod.mps.ohio-state.edu!mips!apple!snorkelwacker!bloom-beacon!eru!luth!sunic!mcsun!hp4nl!kunivv1!eykhout From: eykhout@kunivv1.sci.kun.nl (Victor Eijkhout) Newsgroups: comp.text Subject: Re: Paragraph in \itemize Message-ID: <679@kunivv1.sci.kun.nl> Date: 5 Jan 90 13:57:44 GMT References: <1990Jan4.200857.19580@brutus.cs.uiuc.edu> Distribution: comp Organization: University of Nijmegen, The Netherlands. Lines: 24 sane@brutus.cs.uiuc.edu (Aamod Sane) writes: >I have a lot of text under \item in a \itemize environment in my latex file, >I tried to get paragraphs by putting 2 newlines as usual, but latex did not >generate paragraphs in the item. It simply left the line alone without indenting >as for usual paragraph. > Is there any way to get a normal paragraph in an item? Yes, there is a way, but it's not pleasant. The indentation of paragraphs in lists, such as \itemize, is governed by the \listparindent, which is set to zero by the \list command. However, you can use the commands \@listi, \@listii, et cetera to set other defaults. Look in the style file to see the current definition, and add a setting for \listparindent to it. \makeatletter \renewcommand{\@listi}{ .... \listparindent=\parindent} \makeatother in the preamble of your document should do the job. Victor. :