I try to cerate kind-of-a table in latex. The screenshot below shows how it should look in the end. Using Microsoft Word, I just set the left indents and a tab accordingly.
How's the right approach to create a similar structure in LaTeX?
I try to cerate kind-of-a table in latex. The screenshot below shows how it should look in the end. Using Microsoft Word, I just set the left indents and a tab accordingly.
How's the right approach to create a similar structure in LaTeX?
Here is one out of many possibilities.
\documentclass{article}
\usepackage{enumitem}
\usepackage{lipsum}
%
\begin{document}
\begin{itemize}[leftmargin=1cm,labelsep=2cm,leftmargin=!]
\item[a] \lipsum[1]
\item[bc] \lipsum[2]
\item[d] \lipsum[3]
\end{itemize}
\end{document}
enumitem manual in case you are wondering about !. I have no information other that this should be "sort-of-a table", so I just posted one example.
–
May 17 '18 at 15:18
leftmargin to be 1cm wide, and afterwards say that leftmargin should be calculated from the labelsep. labelsep=2cm,leftmargin=! gives the same result.
– Skillmon
May 17 '18 at 15:35