Text FormattingEnumerated List with hidden Label

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
ghostanime2001
Posts: 402
Joined: Fri May 20, 2011 9:41 am

Enumerated List with hidden Label

Post by ghostanime2001 »

How do you hide an enumerated label but keep the enumerated list's indentation. As if there is a list being printed except there is no label. Thanks.
Last edited by ghostanime2001 on Thu Oct 20, 2011 5:00 pm, edited 3 times in total.

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Enumerated List with hidden Label

Post by localghost »

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{enumitem}

\newcommand{\filltext}{The quick brown fox jumps over the lazx dog. The quick brown fox jumps over the lazx dog.}

\begin{document}
  \filltext\filltext
  
  \begin{enumerate}[label={}]
    \item \filltext
    \item \filltext
  \end{enumerate}
\end{document}

Thorsten
ghostanime2001
Posts: 402
Joined: Fri May 20, 2011 9:41 am

Re: Enumerated List with hidden Label

Post by ghostanime2001 »

thanks
Post Reply