If I want a typesetting like this:
Code: Select all
Some general words blah blah blah.
Date/time/text1 Let's say some general blah blah blah blah
that is required to explain the current date
Date/time/text2 With some other blah blah blah blah blah blah
and more of it
In LateX there is the possibility to do it as tabular.
Code: Select all
Some general words.
\begin{tabular}{ p{2cm} p{10cm} }
Date/time/text1: & Let's say some general blah blah blah blah that is required to explain the current date \\
Date/time/text2: & With some other blah blah blah blah blah blah and more of it \\
Date/time/text3: & Etc \\
\end{tabular}
With tabbing, I have difficulties to have the sentence wrapped at the end of the line.
With \hanging I can't find a way to appropriate alignment of the 'Let's say' and the 'With some other'.
How is this normally done?
Should I consider 'list' ?