Text Formattingrenewenvironment for enumerate

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
abd_bela
Posts: 2
Joined: Sat Oct 16, 2010 9:44 pm

renewenvironment for enumerate

Post by abd_bela »

I want to add an extra space in enumerate environemnt, I can't find where the enumerate env is declared ?

for example I modified the lyxcode ( the size : I used \footntesize) with the following,

renewenvironment{lyxcode}

{\begin{list}{}{

\setlength{\rightmargin}{\leftmargin}

\setlength{\listparindent}{0pt}% needed for AMS classes

\raggedright

\setlength{\itemsep}{0pt}

\setlength{\parsep}{0pt}

\footnotesize\ttfamily}%

\item[]}

{\end{list}}


I am working on debian

Any idea thanks for help
abd_bela

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

renewenvironment for enumerate

Post by gmedina »

Hi,
abd_bela wrote:I want to add an extra space in enumerate environemnt,...
Exactly where? A list has several space controlling parameters and you forgot to mention which one you want to change. You could try using the enumitem package.
abd_bela wrote: ...I can't find where the enumerate env is declared ?
It's defined in the file latex.ltx.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply