Text Formatting ⇒ List with Hanging Indent and no Item Labels
List with Hanging Indent and no Item Labels
I am having trouble doing this. I have tried \usepackage{enumitem} but can't find any combination of options to do what I am looking for.
Anyone have any advice.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
List with Hanging Indent and no Item Labels
Off the top of my head I can offer a solution without a package.
Code: Select all
\documentclass[11pt,english]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{blindtext}
\newenvironment{biblist}{%
\begin{list}{}{%
\setlength{\labelwidth}{0pt}%
\setlength{\labelsep}{1em}%
\setlength{\leftmargin}{2em}%
\setlength{\itemindent}{-1em}%
}
}{\end{list}}
\begin{document}
\blindtext
\begin{biblist}
\item \blindtext
\end{biblist}
\blindtext
\end{document}
The blindtext package is only used for generating some dummy text, thus is not part of the solution.
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10