¿Cuál es una forma rápida de alinear el texto?

¿Cuál es una forma rápida de alinear el texto?

A menudo escribo declaraciones rápidas en las que me gustaría que las siguientes líneas continuaran debajo del final de la primera.

¿Existe una forma rápida de hacer esto (¿requiere matrices?)

this is the first sentence:
                           continue here
                           and here too

Respuesta1

Puedes usar eltabbingambiente.

\begin{tabbing}
this is the first sentence:\=\\
\>continue here\\
\>and here too\\
\end{tabbing}

Respuesta2

\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}

ingrese la descripción de la imagen aquí

información relacionada