Recuar o texto conforme desejado

Recuar o texto conforme desejado

Gostaria de recuar o texto da seguinte forma:minhafig.png

Eu tentei, mas não consegui encontrar uma boa solução para isso. Qualquer ajuda seria apreciável...

Responder1

Você quer usar o descriptionambiente.

\documentclass{book}

\begin{document}

\mainmatter

\chapter{Introduction}

Something to tell what this book is about. Now we
describe the contents of each chapter.

\begin{description}
\item[Chapter 2] deals with gnus, big animals rarely found in Arctic
regions, but that frequently plague silly text examples like this.
Note that gnus are not to be confused with gnats, that are much
smaller animals; enough of this silliness to fill up more than
two lines.

\item[Chapter 3] deals with reindeer, big animals that live in
cold countries and that are very important in this time of the year.
We'll tell how to possibly see reindeer, by remaining awake all the
night between 24 and 25 December.
\end{description}

Something more about the text.

\end{document}

insira a descrição da imagem aqui

Você pode personalizar a lista de descrições; neste caso o enumitempacote é recomendado. No exemplo, o recuo é igual ao recuo normal do parágrafo.

\documentclass{book}
\usepackage{enumitem}

\begin{document}

\mainmatter

\chapter{Introduction}

Something to tell what this book is about. Now we
describe the contents of each chapter.

\begin{description}[leftmargin=\parindent]
\item[Chapter 2] deals with gnus, big animals rarely found in Arctic
regions, but that frequently plague silly text examples like this.
Note that gnus are not to be confused with gnats, that are much
smaller animals; enough of this silliness to fill up more than
two lines.

\item[Chapter 3] deals with reindeer, big animals that live in
cold countries and that are very important in this time of the year.
We'll tell how to possibly see reindeer, by remaining awake all the 
night between 24 and 25 December.

\end{description}

Something more about the text.

\end{document}

insira a descrição da imagem aqui

informação relacionada