
Я часто пишу краткие заявления, в которых мне хотелось бы, чтобы последующие строки продолжались под концом первой.
Есть ли быстрый способ сделать это (требуются массивы?)
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}