テキストを揃える簡単な方法は何ですか?

テキストを揃える簡単な方法は何ですか?

私はよく、最初の行の終わりの下に次の行を続けたい短い文を書いています。

これを簡単に行う方法はありますか (配列が必要ですか)?

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}

ここに画像の説明を入力してください

関連情報