
나는 종종 다음 줄이 첫 번째 줄의 끝 부분 아래에 계속되기를 원하는 빠른 설명을 작성합니다.
이를 수행하는 빠른 방법이 있습니까(배열이 필요합니까?)
this is the first sentence:
continue here
and here too
답변1
당신은 사용할 수 있습니다tabbing
환경.
\begin{tabbing}
this is the first sentence:\=\\
\>continue here\\
\>and here too\\
\end{tabbing}
답변2
\documentclass{article}
\usepackage{stackengine}
\usepackage{lipsum}
\parskip 2em
\newcommand\parbrlap[2]{\brlap{\parbox[t]{#1}{#2}}}
\begin{document}
this is the first sentence\parbrlap{2in}{continue here\\and here}
this is the first sentence\brlap{continue just here}
\tllap{Top left}\bllap{Bottom left}A demonstration%
\tclap{Top center}\bclap{Bottom center} of lapping%
\trlap{Top right}\brlap{Bottom right}.
this is the first sentence\parbrlap{2in}{\tiny\lipsum[3]}
\end{document}