0

I strongly believe this is a duplicate but I didn't find any answers.

My rather simple problem is, that I want to have some part of my text on another textwidth. As seen in the picture below.

Felix
  • 100
  • 5

1 Answers1

2

This is a quote as @Bernard said. There is a standard LaTeX environment for it \begin{quote} .. \end{quote}. There is also the quotation environment for use with longer quotations, of more than one paragraph, because it indents the first line of each paragraph. For more advanced requirements, there is the quoting package as also noted by @Bernard.

\documentclass{article}
\usepackage{lipsum}
\begin{document}

\lipsum[1] \begin{quote} \lipsum[2] \end{quote} \lipsum[3]

\end{document}

enter image description here

Bernard
  • 271,350
AboAmmar
  • 46,352
  • 4
  • 58
  • 127