LaTeX: indent from second line

前端 未结 8 1697
既然无缘
既然无缘 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 14:47

    Similar to Ricibald's answer but simpler (it wasn't clear to me in his post which length was doing the job). I was using this for a bulleted list to indent each line after the first:

    \begin{list}{}%
    
    {\leftmargin=1em \itemindent=-1em}
    
    \item 
    
    \item
    
    \end{list}
    

提交回复
热议问题