LaTeX: indent from second line

前端 未结 8 1695
既然无缘
既然无缘 2021-02-01 14:23

I want to indent from the second line.

I want to write in LaTeX something like this:

Lorem ipsum dolor sit amet, consectetur a         


        
8条回答
  •  后悔当初
    2021-02-01 15:00

    You can modify globally or locally the length named parindent (that has a default value depending on your documentclass and packages and options):

    \documentclass{article}
    \usepackage{lipsum}
    
    \setlength\parindent{-3em}
    
    \begin{document}
    \lipsum[1]
    
    \setlength\parindent{0pt}
    
    \lipsum[2]
    \end{document}
    

提交回复
热议问题