I want to do something like this - any idea of how?
So the idea is, that all but the first line should be indent 
Asked
Active
Viewed 5,432 times
4
Sine Palm
- 51
-
Welcome to TeX.SX! See: http://stackoverflow.com/questions/3254054/latex-indent-from-second-line or hanging package! – Bobyandbob May 20 '17 at 20:05
-
1Related: https://tex.stackexchange.com/questions/99344/indent-text-after-line-1 – Schweinebacke May 22 '17 at 07:05
2 Answers
7
That is the standard layout of the description list.
\documentclass{article}
\begin{document}
\begin{description}
\item[Validation Analysis (VA)] Zzzzz zzz zzz zzzz zzzz
zz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzz
zz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzz
zz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzzzz zzzzz zzzz zzzzzz
\end{description}
\end{document}
David Carlisle
- 757,742
6
The hanging package and the hangparas environment is what you are looking for.
\documentclass{article}
\usepackage{lipsum}
\usepackage{hanging}
\begin{document}
\begin{hangparas}{1em}{1}
\lipsum
\end{hangparas}
\end{document}
but you could also set the following in your preamble to influence the whole document:
\leftskip=1em
\parindent=-1em
In both cases you get an output looking like this:
Georg
- 1,566
-
2it's probably not a good idea to set
\leftskipdirectly in latex, it will get reset in all sorts of places. – David Carlisle May 20 '17 at 20:29 -
(example leftskip breaks) https://tex.stackexchange.com/questions/108327/ alternative includes e.g.
\hangafter– user202729 May 19 '22 at 13:55

