What I'd like to do is this:
Item 1: description description description description description % edge of page
description description description description description
description description description description description
Item 2: description description description description description
description description description description description
description description description description description
etc. with the description wrapping at the edge of the page but not starting at the beginning of the line. I'm fairly new to Latex not even sure what to google here to find the answer. Hopefully someone could point me in the right direction.
\begin{itemize}\item[Item 1:] description description description \item[Item 2:] description description description... \end{itemize}should give something similar... You need to add\usepackage{enumitem}in your preamble... – koleygr Mar 04 '21 at 19:45tabularxenvironment , like this\begin{tabularx}{\linewidth}{@{}rX@{}} Item 1& description description description … \\ Item 2 & …… \end{tabularx}– Bernard Mar 04 '21 at 19:47