1

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.

Sort-of-a table

How's the right approach to create a similar structure in LaTeX?

Michael
  • 257

1 Answers1

2

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}

enter image description here

  • Why leftmargin=1cm,leftmargin=!? – Skillmon May 17 '18 at 15:12
  • @Skillmon As I wrote, that is one of many possibilities. Please see section 3.2 of the 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
  • 2
    I meant, that this is redundant. You're specifying the 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