Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LaTeX: indent from second line

I want to indent from the second line.

I want to write in LaTeX something like this:

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu tempor velit. Fusce accumsan ultrices fringilla. Praesent sed odio mi. Mauris non ligula turpis. Duis posuere lacus nec diam interdum dictum suscipit magna molestie. Vestibulum nibh dolor, interdum eget rhoncus ut, sodales eget justo. Morbi blandit lorem sit amet nulla egestas aliquam. Nunc pharetra est at nibh ullamcorper in commodo erat dignissim. Cras et suscipit enim.   Nunc adipiscing ligula at ligula egestas id ullamcorper felis luctus. Aliquam tincidunt turpis sed eros pellentesque iaculis. Nulla imperdiet cursus enim condimentum congue. 

And I want to produce:

Lorem ipsum dolor sit amet, consectetur adipiscing elit.     Proin eu tempor velit. Fusce accumsan ultrices fringilla. Praesent      sed odio mi. Mauris non ligula turpis. Duis posuere lacus nec diam      interdum dictum suscipit magna molestie. Vestibulum nibh dolor,      interdum eget rhoncus ut, sodales eget justo. Morbi blandit lorem      sit amet nulla egestas aliquam. Nunc pharetra est at nibh ullamcorper      in commodo erat dignissim. Cras et suscipit enim.  Nunc adipiscing ligula at ligula egestas id ullamcorper felis luctus.      Aliquam tincidunt turpis sed eros pellentesque iaculis. Nulla      imperdiet cursus enim condimentum congue. 
like image 561
Ricibald Avatar asked Jul 15 '10 09:07

Ricibald


People also ask

Why can't I indent my second line?

Select "Format" in the top menu. Select "Align and Indent" in the drop down. Then click "Indentation Options" In the window that opens, under special indent, select "Hanging"

How do you indent on LaTeX?

LaTeX will automatically indent the first line of each paragraph that doesn't immediately follow a section heading. If you'd like to get rid of an indent, you can use the \noindent command: \section{Introduction} This is the first paragraph.

How do you indent a line in overleaf?

Paragraph indentation sets \parindent to 20pt. You can avoid indentation by setting \parindent to 0pt (or 0mm, 0cm etc) or using the command \noindent at the beginning of the paragraph.


1 Answers

Depending on why you want to do this, you might be better off using the built-in TeX support for hanging indentation, which the hanging package sugars. If it's a one-off, use the package, but if it's built in to some other layout, the package might just confuse things. Up to you.

The \hangindent dimension gives the size of the indentation, and the \hangafter number indicates when that indentation should start or stop. If the \hangafter number is positive, then indentation starts after that number of lines; if it's negative, then it starts immediately and stops after (minus) that many lines.

These apply only to the immediately following paragraph. The hanging package handles this by using \everypar. That's an occasionally problematic technique, which is why the package includes a 'word of caution' about it.

\documentclass{article}  \parindent=0pt \parskip=\medskipamount  \begin{document}  \hangindent=2em \hangafter=2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu tempor velit. Fusce accumsan ultrices fringilla. Praesent  sed odio mi. Mauris non ligula turpis. Duis posuere lacus nec diam  interdum dictum suscipit magna molestie. Vestibulum nibh dolor,  interdum eget rhoncus ut, sodales eget justo. Morbi blandit lorem  sit amet nulla egestas aliquam. Nunc pharetra est at nibh ullamcorper  in commodo erat dignissim. Cras et suscipit enim.   \hangindent=2em \hangafter=-2 Nunc adipiscing ligula at ligula egestas id ullamcorper felis luctus.  Aliquam tincidunt turpis sed eros pellentesque iaculis. Nulla  imperdiet cursus enim condimentum congue.  \end{document} 
like image 62
Norman Gray Avatar answered Oct 04 '22 19:10

Norman Gray