Text Formatting ⇒ Enumerated List with hidden Label
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Enumerated List with hidden Label
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.
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
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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am